[serverctl] fix default value for db-init config-level stable
authorJulien Cristau <julien.cristau@logilab.fr>
Fri, 13 Jun 2014 11:21:45 +0200
branchstable
changeset 9922 fc02ba8654a7
parent 9921 8227358aa983
child 9923 da09975300aa
[serverctl] fix default value for db-init config-level Otherwise cubicweb-ctl db-init --automatic complains that "--automatic and --config-level should not be used together" when they weren't. Closes #3984336
server/serverctl.py
--- a/server/serverctl.py	Thu Jun 05 17:41:14 2014 +0200
+++ b/server/serverctl.py	Fri Jun 13 11:21:45 2014 +0200
@@ -421,7 +421,7 @@
           'question.',
           }),
         ('config-level',
-         {'short': 'l', 'type': 'int', 'default': 1,
+         {'short': 'l', 'type': 'int', 'default': 0,
           'help': 'level threshold for questions asked when configuring '
           'another source'
           }),