Commit 3c4a629b authored by Skip Montanaro's avatar Skip Montanaro

import statements only raise ImportError, right?

parent db5d1444
...@@ -13,7 +13,7 @@ EMPTYSTRING = '' ...@@ -13,7 +13,7 @@ EMPTYSTRING = ''
try: try:
from binascii import a2b_qp, b2a_qp from binascii import a2b_qp, b2a_qp
except: except ImportError:
a2b_qp = None a2b_qp = None
b2a_qp = None b2a_qp = None
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment