mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
remove prints
This commit is contained in:
parent
ec11551404
commit
304da362f7
@ -47,11 +47,9 @@ def get_inotify_module():
|
||||
|
||||
def is_new_file(pathinfo, db_entry):
|
||||
if db_entry is None:
|
||||
print "is_new_file: True because db_entry is None"
|
||||
return True
|
||||
|
||||
if not pathinfo.exists and db_entry.size is None:
|
||||
print("is_new_file: False because", pathinfo.exists, db_entry.size)
|
||||
return False
|
||||
|
||||
return ((pathinfo.size, pathinfo.ctime_ns, pathinfo.mtime_ns) !=
|
||||
@ -347,7 +345,6 @@ class Uploader(QueueMixin):
|
||||
)
|
||||
self._notifier.watch(self._local_filepath, mask=self.mask, callbacks=[self._notify],
|
||||
recursive=False)#True)
|
||||
print "WATCHING", self._local_filepath
|
||||
|
||||
def start_monitoring(self):
|
||||
self._log("start_monitoring")
|
||||
|
@ -169,7 +169,6 @@ def join(options):
|
||||
"\nUse the 'tahoe magic-folder leave' command first.\n")
|
||||
return 1
|
||||
|
||||
print("ZINGA", dmd_cap_file)
|
||||
fileutil.write(dmd_cap_file, dmd_write_cap)
|
||||
fileutil.write(collective_readcap_file, magic_readonly_cap)
|
||||
|
||||
|
@ -601,7 +601,6 @@ if sys.platform == "win32":
|
||||
None
|
||||
)
|
||||
if hVolume == INVALID_HANDLE_VALUE:
|
||||
print("ZINGA", abspath)
|
||||
raise WinError(get_last_error())
|
||||
|
||||
if FlushFileBuffers(hVolume) == 0:
|
||||
|
Loading…
Reference in New Issue
Block a user