commit 46792024c2bfc6fe4a06fcfe8411b3a3fa40cf8c
parent 86bc9067cd8bcc6fbf4d37fcd1c45f72e716f39e
Author: ThomasV <thomasv@gitorious>
Date: Mon, 23 Sep 2013 10:26:28 +0200
missing imports in version_getter
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui/gui_classic/version_getter.py b/gui/gui_classic/version_getter.py
@@ -16,14 +16,14 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-import threading, httplib, re
+import threading, httplib, re, socket
import webbrowser
from PyQt4.QtGui import *
from PyQt4.QtCore import *
import PyQt4.QtCore as QtCore
from electrum.i18n import _
-from electrum import ELECTRUM_VERSION
+from electrum import ELECTRUM_VERSION, print_error
class VersionGetter(threading.Thread):