[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
--- 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'
}),