Skip to content

Commit

Permalink
Tiny code change
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Jan 8, 2019
1 parent bd955b7 commit 2db5422
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/budy/bots/tracking_bot.py
Expand Up @@ -62,8 +62,7 @@ def tick(self):
def sync_sent(self):
orders = budy.Order.find_e(
status = "sent",
created = {"$gt" : time.time() - self.window},
limit = -1
created = {"$gt" : time.time() - self.window}
)
for order in orders:
if not order.tracking_number: continue
Expand Down

0 comments on commit 2db5422

Please sign in to comment.