Merge "Python3 support"

This commit is contained in:
Jenkins 2014-09-07 18:46:47 +00:00 committed by Gerrit Code Review
commit a515657196
2 changed files with 4 additions and 2 deletions

View File

@ -16,8 +16,8 @@
import json
import logging
import pprint
import Queue
import select
import six.moves
import threading
import time
@ -182,7 +182,7 @@ class Gerrit(object):
self.installed_plugins = None
def startWatching(self, connection_attempts=-1, retry_delay=5):
self.event_queue = Queue.Queue()
self.event_queue = six.moves.queue.Queue()
watcher = GerritWatcher(self,
connection_attempts=connection_attempts,
retry_delay=retry_delay)

View File

@ -1,3 +1,5 @@
pbr>=0.6,!=0.7,<1.0
paramiko>=1.8.0
six>=1.7.0