summaryrefslogtreecommitdiff
path: root/kafka/queue.py
diff options
context:
space:
mode:
authorDavid Arthur <mumrah@gmail.com>2013-09-24 21:18:55 -0400
committerDavid Arthur <mumrah@gmail.com>2013-09-24 21:20:00 -0400
commitc0d2cac66940bf477c008e65c9d2bbcd79f030a0 (patch)
treeee5dc075a7d9ec86633bf4e0076a522e70da0ab4 /kafka/queue.py
parent9af7b817c17a8d8c08e60607f117c8ac46668eda (diff)
downloadkafka-python-c0d2cac66940bf477c008e65c9d2bbcd79f030a0.tar.gz
Fix #44 Add missing exception classv0.8.0
Also move the exceptions to common instead of util
Diffstat (limited to 'kafka/queue.py')
-rw-r--r--kafka/queue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/queue.py b/kafka/queue.py
index 3bd7dca..41f1c31 100644
--- a/kafka/queue.py
+++ b/kafka/queue.py
@@ -4,7 +4,7 @@ from multiprocessing import Process, Queue, Event
from Queue import Empty
import time
-from .client import KafkaClient, FetchRequest, ProduceRequest
+from kafka.client import KafkaClient, FetchRequest, ProduceRequest
log = logging.getLogger("kafka")