diff options
author | Johan Dahlin <jdahlin@litl.com> | 2009-02-11 16:59:17 -0200 |
---|---|---|
committer | Johan Dahlin <jdahlin@litl.com> | 2009-02-11 16:59:17 -0200 |
commit | 0accdcd19ca8b664e40a4d560079cd6eb5f3567c (patch) | |
tree | 30b0e6a5e710495e69c50c34436c1adb608d15a5 /giscanner/cachestore.py | |
parent | 4c953a266bc74669995f28aaa34cae854a229283 (diff) | |
download | gobject-introspection-0accdcd19ca8b664e40a4d560079cd6eb5f3567c.tar.gz |
Add missing self parameter
This is really why you shouldn't catch TypeError.
Diffstat (limited to 'giscanner/cachestore.py')
-rw-r--r-- | giscanner/cachestore.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/cachestore.py b/giscanner/cachestore.py index 8c901951..9ecde262 100644 --- a/giscanner/cachestore.py +++ b/giscanner/cachestore.py @@ -69,7 +69,7 @@ class CacheStore(object): return (os.stat(store_filename).st_mtime >= os.stat(filename).st_mtime) - def _remove_filename(filename): + def _remove_filename(self, filename): try: os.unlink(filename) except IOError, e: |