From 5f3e1f512856382d0540716ee43cf684e738dca6 Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Mon, 7 Jun 2010 19:15:50 +0100 Subject: [PATCH] Removed print statements for changing dates --- src/calibre/devices/prs505/sony_cache.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/calibre/devices/prs505/sony_cache.py b/src/calibre/devices/prs505/sony_cache.py index d5aa88bf5b..88384a804d 100644 --- a/src/calibre/devices/prs505/sony_cache.py +++ b/src/calibre/devices/prs505/sony_cache.py @@ -426,11 +426,6 @@ class XMLCache(object): timestamp = os.path.getctime(path) date = strftime(timestamp) if date != record.get('date', None): - if DEBUG: - debug_print('Changing date of', path, 'from', - record.get('date', ''), 'to', date) - prints('\tctime', strftime(os.path.getctime(path))) - prints('\tmtime', strftime(os.path.getmtime(path))) record.set('date', date) record.set('size', str(os.stat(path).st_size)) title = book.title if book.title else _('Unknown')