Skip to content

Commit

Permalink
Merge pull request #717 from maxnbk/maxnbk/feat-py3-six-moves-queue
Browse files Browse the repository at this point in the history
import queue module through six
  • Loading branch information
nerdvegas authored Sep 5, 2019
2 parents 125b564 + 6b111a0 commit 548294f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rez/utils/amqp.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
import socket
import time
import threading
from Queue import Queue

from rez.utils import json
from rez.utils.data_utils import remove_nones
from rez.utils.logging_ import print_error
from rez.vendor.amqp import Connection, basic_message
from rez.vendor.six.six.moves import queue


_lock = threading.Lock()
_queue = Queue()
_queue = queue.Queue()
_thread = None
_num_pending = 0

Expand Down

0 comments on commit 548294f

Please sign in to comment.