Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Dahlin <jdahlin@litl.com>2009-02-11 18:59:17 (GMT)
committer Johan Dahlin <jdahlin@litl.com>2009-02-11 18:59:17 (GMT)
commit0accdcd19ca8b664e40a4d560079cd6eb5f3567c (patch)
tree30b0e6a5e710495e69c50c34436c1adb608d15a5
parent4c953a266bc74669995f28aaa34cae854a229283 (diff)
Add missing self parameter
This is really why you shouldn't catch TypeError.
-rw-r--r--giscanner/cachestore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/cachestore.py b/giscanner/cachestore.py
index 8c90195..9ecde26 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: