remove prints

This commit is contained in:
meejah 2016-05-10 17:21:55 -06:00 committed by Brian Warner
parent ec11551404
commit 304da362f7
3 changed files with 0 additions and 5 deletions

View File

@ -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")

View File

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

View File

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