First release with cluster mode.
--- a/mp3togo/__init__.py
+++ b/mp3togo/__init__.py
@@ -21,5 +21,5 @@
# __all__ = ('converter', 'main', 'options', 'setup')
-version = '0.4.2'
+version = '0.5.0'
--- a/mp3togo/tags.py
+++ b/mp3togo/tags.py
@@ -61,7 +61,6 @@ class Tags(UserDict.DictMixin):
"""
def __init__(self, filename):
- print filename
if not os.path.exists(filename):
raise setup.ErrorNoFile
self._file = filename
--- a/mp3togo/task.py
+++ b/mp3togo/task.py
@@ -266,7 +266,6 @@ class Task(SimpleTask):
try:
wpid, status = os.waitpid(pid, 0)
if os.WIFSIGNALED(status):
- print "Signaled: ", os.WTERMSIG(status)
self._status = FAILED
elif os.WEXITSTATUS(status) == 0:
self._status = DONE