From 9d996c07fbfc408c0c07eeadb2eca86a5b672028 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 20 Jul 2011 13:00:34 +0000 Subject: [PATCH] another quick fix --- lib/utils/hash.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/utils/hash.py b/lib/utils/hash.py index b631db678..7ed6a56ab 100644 --- a/lib/utils/hash.py +++ b/lib/utils/hash.py @@ -16,7 +16,10 @@ _multiprocessing = None try: import multiprocessing _multiprocessing = multiprocessing -except ImportError, _: # problems on FreeBSD (Reference: http://www.velocityreviews.com/forums/t716510-freebsd-and-multiprocessing.html) + + # problems on FreeBSD (Reference: http://www.velocityreviews.com/forums/t716510-freebsd-and-multiprocessing.html) + import multiprocessing.queues +except ImportError, _: pass import os