diff options
Diffstat (limited to 'pyload/Core.py')
-rw-r--r-- | pyload/Core.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/Core.py b/pyload/Core.py index 15b036c7a..2d591a2bb 100644 --- a/pyload/Core.py +++ b/pyload/Core.py @@ -261,7 +261,7 @@ class Core(object): def cleanTree(self): - for path, dirs, files in walk(self.path("")): + for path, dirs, files in walk(self.path("pyload")): for f in files: if not f.endswith(".pyo") and not f.endswith(".pyc"): continue @@ -664,4 +664,4 @@ def main(): if __name__ == "__main__": - print "This file can not be started directly."
\ No newline at end of file + print "This file can not be started directly." |