Browse Source

Revert "Make sure to untag downloading dir if it's completed. fix #2341"

This reverts commit 65f039e9ed.
pull/2346/head
Ruud 12 years ago
parent
commit
2b57bdcd03
  1. 7
      couchpotato/core/plugins/renamer/main.py

7
couchpotato/core/plugins/renamer/main.py

@ -735,10 +735,6 @@ Remove it if you want it to be renamed (again, or at least let it try again)
fireEvent('movie.searcher.try_next_release', movie_id = rel.movie_id)
elif item['status'] == 'completed':
log.info('Download of %s completed!', item['name'])
# Remove the downloading tag
self.untagDir(item['folder'], 'downloading')
if self.statusInfoComplete(item):
# If the release has been seeding, process now the seeding is done
@ -762,6 +758,9 @@ Remove it if you want it to be renamed (again, or at least let it try again)
# Set the release to snatched if it was missing before
fireEvent('release.update_status', rel.id, status = snatched_status, single = True)
# Remove the downloading tag
self.untagDir(item['folder'], 'downloading')
# Scan and Allow the downloader to clean-up
item.update({'pause': False, 'scan': True, 'process_complete': True})
scan_items.append(item)

Loading…
Cancel
Save