cleanup and fixes

- cleaned up logger messages
- SIZE_CUTOFF moved to config
- useLink changed to true/false (easier to understand)
- removed which.py (included in extractor.py)
- added a check in the extractor to support transmission (otherwise it
will fail), but note that it will not be able to check if an command is
executable
This commit is contained in:
Joel Kåberg 2013-03-01 10:55:51 +01:00
commit f41b576967
5 changed files with 43 additions and 50 deletions

View file

@ -36,6 +36,6 @@ elif len(sys.argv) == 4:
autoProcessMovie.process(sys.argv[1], sys.argv[2], sys.argv[3])
else:
Logger.debug("Invalid number of arguments received from client.")
Logger.warn("Invalid number of arguments received from client.")
Logger.info("Running autoProcessMovie as a manual run...")
autoProcessMovie.process('Manual Run', 'Manual Run', 0)