From bc91884c4d79090c2c0ffed334d8e31e61b40333 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 25 Dec 2014 23:05:34 +0100 Subject: [PATCH] Fix for an Issue #1065 --- lib/utils/hash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/hash.py b/lib/utils/hash.py index 91aba6827..f8a8c45a2 100644 --- a/lib/utils/hash.py +++ b/lib/utils/hash.py @@ -638,7 +638,7 @@ def _bruteProcessVariantB(user, hash_, kwargs, hash_regex, suffix, retVal, found rotator = 0 status = 'current status: %s... %s' % (word.ljust(5)[:5], ROTATING_CHARS[rotator]) - if not user.startswith(DUMMY_USER_PREFIX): + if user and not user.startswith(DUMMY_USER_PREFIX): status += ' (user: %s)' % user if not hasattr(conf, "api"):