From b894139ca10fda63272294ffa408372f7cf3f221 Mon Sep 17 00:00:00 2001 From: Ruud Date: Tue, 3 Jun 2014 16:54:21 +0200 Subject: [PATCH] Make full path for logs --- CouchPotato.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CouchPotato.py b/CouchPotato.py index 364d77a4..f21b9393 100755 --- a/CouchPotato.py +++ b/CouchPotato.py @@ -50,7 +50,7 @@ class Loader(object): # Create logging dir self.log_dir = os.path.join(self.data_dir, 'logs'); if not os.path.isdir(self.log_dir): - os.mkdir(self.log_dir) + os.makedirs(self.log_dir) # Logging from couchpotato.core.logger import CPLog