Browse Source

synoindex proper logging

pull/69/head
Ruud 14 years ago
parent
commit
17149a58f1
  1. 2
      couchpotato/core/notifications/synoindex/main.py

2
couchpotato/core/notifications/synoindex/main.py

@ -19,7 +19,7 @@ class Synoindex(Notification):
try:
p = subprocess.Popen(command, stdout = subprocess.PIPE, stderr = subprocess.STDOUT)
out = p.communicate()
log.info('Result from synoindex: %s' % out)
log.info('Result from synoindex: %s' % str(out))
return True
except OSError, e:
log.error('Unable to run synoindex: %s' % e)

Loading…
Cancel
Save