Remove unused imports, unused variables, and redundant parentheses

This commit is contained in:
labrys 2016-05-31 04:26:09 -04:00 committed by Labrys
parent b7c7ec000b
commit d15fa76fc9
5 changed files with 10 additions and 18 deletions

View file

@ -132,7 +132,7 @@ class autoProcessMusic:
# we will now wait for this album to be processed before returning to TorrentToMedia and unpausing.
timeout = time.time() + 60 * wait_for
while (time.time() < timeout):
while time.time() < timeout:
current_status = self.get_status(url, apikey, dirName)
if current_status is not None and current_status != release_status: # Something has changed. CPS must have processed this movie.
logger.postprocess("SUCCESS: This release is now marked as status [%s]" % (current_status),section)