Create default logging.conf if it doesn't exist, thanks Marc
This commit is contained in:
@@ -1 +1 @@
|
||||
Version 2.00.0 (2012-05-11 14:51:42) dev
|
||||
Version 2.00.0 (2012-05-11 17:41:20) dev
|
||||
|
||||
@@ -895,6 +895,12 @@ def start(cron=True):
|
||||
if hasattr(options,key):
|
||||
setattr(options,key,getattr(options2,key))
|
||||
|
||||
if not os.path.exists('logging.conf'):
|
||||
import shutil
|
||||
sys.stdout.write("Copying logging.conf.example to logging.conf ... ")
|
||||
shutil.copyfile('logging.example.conf', 'logging.conf')
|
||||
sys.stdout.write("OK\n")
|
||||
|
||||
# ## if -T run doctests (no cron)
|
||||
if hasattr(options,'test') and options.test:
|
||||
test(options.test, verbose=options.verbose)
|
||||
|
||||
Reference in New Issue
Block a user