From 17149a58f1fb120bf4c3e73a7dda683a8d24174a Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 14 Jan 2012 14:51:39 +0100 Subject: [PATCH] synoindex proper logging --- couchpotato/core/notifications/synoindex/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/notifications/synoindex/main.py b/couchpotato/core/notifications/synoindex/main.py index 9541d9d8..9d06b781 100644 --- a/couchpotato/core/notifications/synoindex/main.py +++ b/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)