summaryrefslogtreecommitdiff
path: root/alot/crypto.py
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2016-07-14 14:18:48 +0200
committerLucas Hoffmann <l-m-h@web.de>2016-12-09 11:26:19 +0100
commitfe748a7f47fb61d46dd88c270c2329e6ff19a895 (patch)
tree66bb5dc3145ef621db21e6505d91591e6b414d0f /alot/crypto.py
parentd89bbe11537abfceb3d0c7b62b9325fceaf51e32 (diff)
Clean up imports
- use relative imports if possible - group imports into standard library, third party, and alot modules - sort imports alphabetically
Diffstat (limited to 'alot/crypto.py')
-rw-r--r--alot/crypto.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/alot/crypto.py b/alot/crypto.py
index 8efd0254..dc9a0077 100644
--- a/alot/crypto.py
+++ b/alot/crypto.py
@@ -2,10 +2,9 @@
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file
import os
-
from cStringIO import StringIO
-from alot.errors import GPGProblem, GPGCode
import gpgme
+from .errors import GPGProblem, GPGCode
def _hash_algo_name(hash_algo):