From a65048e646fd81e147c541e0e7f08971b4aa22c4 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Tue, 29 Oct 2002 21:59:20 +0000 Subject: [PATCH] Fixed silly typo in previous fix. Needs to be ported forward. --- Mac/Lib/macostools.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Mac/Lib/macostools.py b/Mac/Lib/macostools.py index 43ab74fb7760..9f072d751167 100644 --- a/Mac/Lib/macostools.py +++ b/Mac/Lib/macostools.py @@ -69,7 +69,10 @@ def touched(dst): now = time.time() if now == moddate: now = now + 1 - dir_fss.SetDates(crdate, now, bkdate) + try: + dir_fss.SetDates(crdate, now, bkdate) + except macfs.error: + pass def touched_ae(dst): """Tell the finder a file has changed""" -- 2.47.3