From 12d131f7f2f7c6e0c65a1d0a5f071eafe119d9ae Mon Sep 17 00:00:00 2001 From: Jonathan Warren Date: Wed, 30 Apr 2014 12:44:16 -0400 Subject: [PATCH] Fixed minor label problem during init --- src/bitmessageqt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitmessageqt/__init__.py b/src/bitmessageqt/__init__.py index 7125cb60..c20d955b 100644 --- a/src/bitmessageqt/__init__.py +++ b/src/bitmessageqt/__init__.py @@ -771,7 +771,7 @@ class MyForm(QtGui.QMainWindow): if shared.config.has_section(fromAddress): fromLabel = shared.config.get(fromAddress, 'label') - if fromLabel == '': + else: fromLabel = fromAddress toLabel = ''