1
0
mirror of https://github.com/sashacmc/photo-importer.git synced 2025-02-16 18:34:34 +02:00

Change default config values for debug

This commit is contained in:
sashacmc 2020-01-18 02:27:20 +01:00
parent 733eeafc4c
commit 512af4e258

View File

@ -1,7 +1,7 @@
#!/usr/bin/python3
import configparser
import os
import configparser
class Config(object):
@ -28,11 +28,11 @@ class Config(object):
},
'server': {
'port': 8080,
'web_path': 'web',
'web_path': '../web',
'remote_drive_reg': 'sd[d-z][0-9]',
'out_path': '/mnt/multimedia/NEW/',
'in_path': '',
'log_file': '/var/log/photo-importer-server.log',
'log_file': 'photo-importer-server.log',
}
}