mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-21 05:53:12 +00:00
Fix alice bob test
This commit is contained in:
parent
825e8d9e9a
commit
ecfc33bb05
@ -471,10 +471,10 @@ class Downloader(QueueMixin):
|
||||
print "name ", name
|
||||
file_node, metadata = listing_map[name]
|
||||
local_version = self._get_local_latest(name) # XXX we might need to convert first?
|
||||
if local_version is None:
|
||||
return None
|
||||
if local_version >= metadata['version']:
|
||||
return None
|
||||
if local_version is not None:
|
||||
if local_version >= metadata['version']:
|
||||
print "local_version >= metadata['version']"
|
||||
return None
|
||||
else:
|
||||
print "local_version %r" % (local_version,)
|
||||
print "ALL KEYS %s" % (self._download_scan_batch.keys(),)
|
||||
|
Loading…
Reference in New Issue
Block a user