Fix the build in python 2.6: speeling error

This commit is contained in:
Anthony Sottile 2014-03-23 12:38:32 -07:00
parent 254655e2fd
commit ae1d1681b2
2 changed files with 1 additions and 2 deletions

View file

@ -30,6 +30,5 @@ def install_environment():
def run_hook(hook, file_args): def run_hook(hook, file_args):
# TODO: batch filenames
with in_env() as env: with in_env() as env:
return helpers.run_hook(env, hook, file_args) return helpers.run_hook(env, hook, file_args)

View file

@ -5,6 +5,6 @@ from __future__ import absolute_import
try: try:
from collections import OrderedDict from collections import OrderedDict
except ImportError: except ImportError:
from orderddict import OrderedDict from ordereddict import OrderedDict
__all__ = (OrderedDict.__name__,) __all__ = (OrderedDict.__name__,)