Skip to content

Commit

Permalink
Fixed issues with clearing out stale *.pyc files
Browse files Browse the repository at this point in the history
  • Loading branch information
echel0n committed Oct 26, 2017
1 parent 0787004 commit 5a73364
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 37 deletions.
2 changes: 1 addition & 1 deletion SiCKRAGE.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

if __name__ == '__main__':
# removes stale .pyc files
for root, dirs, files in os.walk("."):
for root, dirs, files in os.walk(os.path.dirname(__file__)):
pyc_files = filter(lambda filename: filename.endswith(".pyc"), files)
py_files = set(filter(lambda filename: filename.endswith(".py"), files))
excess_pyc_files = filter(lambda pyc_filename: pyc_filename[:-1] not in py_files, pyc_files)
Expand Down
35 changes: 0 additions & 35 deletions SickBeard.py

This file was deleted.

3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

- * 279eae1 - 2017-10-25: Release v9.1.53
- * c95eddc - 2017-10-26: Fixed issues with clearing out stale *.pyc files
- * 57bf43e - 2017-10-25: Release v9.1.53
- * f90baa4 - 2017-10-25: Fixed issue with wanted and missing labeling
- * c5143b6 - 2017-10-24: Release v9.1.52
- * 7772474 - 2017-10-24: Updated url to favicon for notifications
Expand Down

0 comments on commit 5a73364

Please sign in to comment.