fixed issue 1120, bug introduced in latest utils.py import. thanks Yair

This commit is contained in:
mdipierro
2012-10-29 08:59:54 -05:00
parent 554640b103
commit db21f663fe
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.2.1 (2012-10-29 08:57:40) stable
Version 2.2.1 (2012-10-29 08:59:50) stable
+1 -1
View File
@@ -37,7 +37,7 @@ try:
except ImportError:
try:
from .aes import AES
except ImportError:
except (ImportError, ValueError):
from contrib.aes import AES
try: