diff options
Diffstat (limited to 'django/contrib/formtools/wizard/storage/__init__.py')
| -rw-r--r-- | django/contrib/formtools/wizard/storage/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/formtools/wizard/storage/__init__.py b/django/contrib/formtools/wizard/storage/__init__.py index b88ccc79ef..f2293c93a3 100644 --- a/django/contrib/formtools/wizard/storage/__init__.py +++ b/django/contrib/formtools/wizard/storage/__init__.py @@ -10,7 +10,7 @@ def get_storage(path, *args, **kwargs): module, attr = path[:i], path[i+1:] try: mod = import_module(module) - except ImportError, e: + except ImportError as e: raise MissingStorageModule( 'Error loading storage %s: "%s"' % (module, e)) try: |
