1
0
mirror of https://github.com/OfflineIMAP/offlineimap.git synced 2024-06-28 07:40:51 +02:00

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 <Sebastian@SSpaeth.de>
This commit is contained in:
Sebastian Spaeth 2012-02-05 13:28:00 +01:00
parent 046210b93d
commit 8aba2800e6

View File

@ -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():