# HG changeset patch # User Julien Cristau # Date 1402651305 -7200 # Node ID fc02ba8654a717996e61fd5f04760dbaa5b4ff81 # Parent 8227358aa983fab6717f7c26130f72a172cf6292 [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 diff -r 8227358aa983 -r fc02ba8654a7 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' }),