From e9dc2d5c5ea78f9945eb700514342ebfe54539b0 Mon Sep 17 00:00:00 2001 From: Jordan Hall Date: Sun, 23 Jun 2013 19:31:47 +0100 Subject: [PATCH] Fixed missing hashlib import in class_sendDataThread --- src/class_sendDataThread.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/class_sendDataThread.py b/src/class_sendDataThread.py index fd0ca786..6773a868 100644 --- a/src/class_sendDataThread.py +++ b/src/class_sendDataThread.py @@ -3,6 +3,7 @@ import threading import shared import Queue from struct import unpack, pack +import hashlib import bitmessagemain