From 8aba2800e6336e64b6aad0a64c23163a245ecc42 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Sun, 5 Feb 2012 13:28:00 +0100 Subject: [PATCH] long(0) -> 0 There is no need to cast 0 to 'long' even if we want to compare it to long numbers in modern pythons. Signed-off-by: Sebastian Spaeth --- offlineimap/folder/Maildir.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/offlineimap/folder/Maildir.py b/offlineimap/folder/Maildir.py index 8ca32e5..16745ab 100644 --- a/offlineimap/folder/Maildir.py +++ b/offlineimap/folder/Maildir.py @@ -40,7 +40,7 @@ re_uidmatch = re.compile(',U=(\d+)') re_timestampmatch = re.compile('(\d+)'); timeseq = 0 -lasttime = long(0) +lasttime = 0 timelock = Lock() def gettimeseq():