diff options
author | Ask Solem <ask@celeryproject.org> | 2012-06-15 19:32:40 +0200 |
---|---|---|
committer | Ask Solem <ask@celeryproject.org> | 2012-06-15 19:32:40 +0200 |
commit | 5e7a32440f803321a58453efb3ea0fde0d4497b2 (patch) | |
tree | 3fe4f3e58b85b18105141d799779f30d043ecd82 /kombu/transport/virtual/scheduling.py | |
parent | 8d5652600e9afc76c803958638821a12018b8803 (diff) | |
download | kombu-5e7a32440f803321a58453efb3ea0fde0d4497b2.tar.gz |
Use single quotes
Diffstat (limited to 'kombu/transport/virtual/scheduling.py')
-rw-r--r-- | kombu/transport/virtual/scheduling.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kombu/transport/virtual/scheduling.py b/kombu/transport/virtual/scheduling.py index 13fcb469..9fc3f8f0 100644 --- a/kombu/transport/virtual/scheduling.py +++ b/kombu/transport/virtual/scheduling.py @@ -48,5 +48,5 @@ class FairCycle(object): pass def __repr__(self): - return "<FairCycle: %r/%r %r>" % (self.pos, len(self.resources), + return '<FairCycle: %r/%r %r>' % (self.pos, len(self.resources), self.resources, ) |