Skip to content

Commit

Permalink
Fix a typo in the module name
Browse files Browse the repository at this point in the history
Also fix a typo in the test for check for such typos. =)
  • Loading branch information
brettcannon committed Sep 19, 2014
1 parent 39816c9 commit 14b16f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libmodernize/fixes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
'libmodernize.fixes.fix_basestring',
'libmodernize.fixes.fix_dict_six',
'libmodernize.fixes.fix_filter',
'libermodernize.fixes.fix_imports_six',
'libmodernize.fixes.fix_imports_six',
'libmodernize.fixes.fix_input_six',
'libmodernize.fixes.fix_map',
'libmodernize.fixes.fix_metaclass',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_fixes.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def check_existence(prefix, module_names):
dotted_prefix = prefix + '.'
for module_name in module_names:
if not module_name.startswith(dotted_prefix):
msg = '{0!r} does not start with {1!r}'.format(module_name, lib2to3_prefix)
msg = '{0!r} does not start with {1!r}'.format(module_name, prefix)
raise AssertionError(msg)
try:
__import__(module_name)
Expand Down

0 comments on commit 14b16f6

Please sign in to comment.