diff options
Diffstat (limited to 'Lib/dircache.py')
-rw-r--r-- | Lib/dircache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dircache.py b/Lib/dircache.py index a35e16d..08b127a 100644 --- a/Lib/dircache.py +++ b/Lib/dircache.py @@ -19,7 +19,7 @@ def listdir(path): mtime = os.stat(path)[8] except os.error: return [] - if mtime <> cached_mtime: + if mtime != cached_mtime: try: list = os.listdir(path) except os.error: |