Skip to content

Commit

Permalink
Spare fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vuolter committed Jun 15, 2017
1 parent 7915fe6 commit 24e34b3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
Release History
---------------

### 0.5.x (unreleased)

- Development release

### 0.4.9 (2011-12-14)

- Fixed various encoding issues
Expand Down
2 changes: 1 addition & 1 deletion requirements/install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ pyload.config~=0.6
pyload.requests~=0.6
pyload.utils2~=0.6
semver
setuptools
setuptools>=0.6.39
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ pyload.config~=0.6
pyload.requests~=0.6
pyload.utils2~=0.6
requests>=1.2.2
setuptools
setuptools>=0.6.39
unittest2
websocket-client>=0.8
4 changes: 2 additions & 2 deletions src/pyload/core/iface.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import autoupgrade
import daemonize
from pyload.utils.fs import cleanpy, makedirs
from pyload.utils.fs import makedirs, remove

from .__about__ import __namespace__, __package_name__, __version__
from .init import Core, _pmap
Expand Down Expand Up @@ -95,7 +95,7 @@ def cleanup():
if _pmap:
raise RuntimeError
packdir = os.path.join(get_default_cache(), __package_name__)
cleanpy(packdir)
remove(packdir, ignore_errors=True)


# def test():
Expand Down

0 comments on commit 24e34b3

Please sign in to comment.