Removed a few debug print statements that are no longer needed

This commit is contained in:
2010-08-07 12:36:14 +01:00
parent 9718800002
commit 94b8736622
5 changed files with 1 additions and 8 deletions

View File

@@ -21,7 +21,6 @@ class UpdateAPIs():
def job(self):
delta = datetime.timedelta(seconds=self.last_update_delay)
print delta
self._logger.debug("Updating accounts older than %s" % (datetime.datetime.now() - delta))
for acc in RedditAccount.objects.filter(last_update__lt=(datetime.datetime.now() - delta)):