This commit is contained in:
Ask Solem 2011-04-21 18:38:11 +02:00
parent a10c9ee44b
commit cfd12301ea
1 changed files with 3 additions and 2 deletions

View File

@ -32,8 +32,9 @@ class Channel(virtual.Channel):
def _get(self, queue):
try:
msg = self.client.database.command("findandmodify",
"messages", query={"queue": queue}, sort={'_id' : pymongo.ASCENDING }, remove=True)
msg = self.client.database.command("findandmodify", "messages",
query={"queue": queue},
sort={"_id": pymongo.ASCENDING}, remove=True)
except errors.OperationFailure, exc:
if "No matching object found" in exc.args[0]:
raise Empty()