Volker Birk 6 years ago
parent
commit
26d9c8b3ea
  1. 5
      test/minimail.py

5
test/minimail.py

@ -88,8 +88,9 @@ def recv_all(inbox, marker):
t = p.stat().st_mtime t = p.stat().st_mtime
if t > newest: if t > newest:
newest = t newest = t
(inbox / marker).touch(exist_ok=True) if newest:
os.utime(str(inbox / marker), (newest, newest)) (inbox / marker).touch(exist_ok=True)
os.utime(str(inbox / marker), (newest, newest))
if not r: if not r:
sleep(1) sleep(1)

Loading…
Cancel
Save