tmissing imports in version_getter - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 46792024c2bfc6fe4a06fcfe8411b3a3fa40cf8c DIR parent 86bc9067cd8bcc6fbf4d37fcd1c45f72e716f39e HTML Author: ThomasV <thomasv@gitorious> Date: Mon, 23 Sep 2013 10:26:28 +0200 missing imports in version_getter Diffstat: M gui/gui_classic/version_getter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/gui/gui_classic/version_getter.py b/gui/gui_classic/version_getter.py t@@ -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):