summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Quast <jquast@io.com>2015-05-09 14:53:48 -0700
committerJeff Quast <jquast@io.com>2015-05-09 14:53:48 -0700
commitff3dc793fdcf6b0843443b15bf327d7bbae8a1e0 (patch)
tree20b0ebe610bca778843e451e27dd5d6051d937b5
parent4ca709641dc7c9e1fdf3101baffdb3d2416e045a (diff)
downloadblessings-ff3dc793fdcf6b0843443b15bf327d7bbae8a1e0.tar.gz
spellfix: derivitive -> derivative
-rw-r--r--blessings/formatters.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/blessings/formatters.py b/blessings/formatters.py
index 8a0f4e4..de99529 100644
--- a/blessings/formatters.py
+++ b/blessings/formatters.py
@@ -14,8 +14,8 @@ def _make_colors():
"""
derivatives = ('on', 'bright', 'on_bright',)
colors = set('black red green yellow blue magenta cyan white'.split())
- return set(['_'.join((_derivitive, _color))
- for _derivitive in derivatives
+ return set(['_'.join((_deravitive, _color))
+ for _deravitive in derivatives
for _color in colors]) | colors