Browse Source

Make full path for logs

pull/3362/head
Ruud 11 years ago
parent
commit
b894139ca1
  1. 2
      CouchPotato.py

2
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

Loading…
Cancel
Save