From 98616d10bbd869b5025dc8de077661e7d5eaa873 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 17 Dec 2015 17:11:24 +0000 Subject: [PATCH] parsearchive: Fix import bug A bug was introduced in the Python 3 port - the 'bin' folder is not a module and therefore relative imports should not be used. Resolve this. Signed-off-by: Stephen Finucane --- patchwork/bin/parsearchive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patchwork/bin/parsearchive.py b/patchwork/bin/parsearchive.py index 5ded8ef8..f8792155 100755 --- a/patchwork/bin/parsearchive.py +++ b/patchwork/bin/parsearchive.py @@ -29,7 +29,7 @@ import mailbox import django -from . import parsemail +from patchwork.bin import parsemail VERBOSITY_LEVELS = { 'debug': logging.DEBUG, -- 2.47.3