chiark
/
gitweb
/
~ian
/
hippotat.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7852bfc
)
config: Check args after reading config
author
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Sun, 9 Apr 2017 15:10:29 +0000
(16:10 +0100)
committer
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Sun, 9 Apr 2017 15:10:35 +0000
(16:10 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
hippotatlib/__init__.py
patch
|
blob
|
history
diff --git
a/hippotatlib/__init__.py
b/hippotatlib/__init__.py
index e8a502f8a35b88b9ea616e7dce6c0089a5e55401..4f0bc8ce467b1d138b804607166f65f07a4498ee 100644
(file)
--- a/
hippotatlib/__init__.py
+++ b/
hippotatlib/__init__.py
@@
-630,12
+630,13
@@
just `+': all DFLAGs.
action='callback',
callback= oc_config)
- (opts, args) = optparser.parse_args()
- if len(args): optparser.error('no non-option arguments please')
if need_defcfg:
read_defconfig()
+ (opts, args) = optparser.parse_args()
+ if len(args): optparser.error('no non-option arguments please')
+
try:
(pss, pcs) = _cfg_process_putatives()
process_cfg(opts, pss, pcs)