home
·
contact
·
privacy
projects
/
stable_plom
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
217e163
)
Minor parsing corrections.
author
Christian Heller
<c.heller@plomlompom.de>
Mon, 26 Aug 2024 04:40:02 +0000
(06:40 +0200)
committer
Christian Heller
<c.heller@plomlompom.de>
Mon, 26 Aug 2024 04:40:02 +0000
(06:40 +0200)
stable.py
patch
|
blob
|
history
diff --git
a/stable.py
b/stable.py
index 64ee7042cdc9a035602302a546d21ef4b5574f32..e601f00fa0e152cc4131da36c1aa1695cd5ab3dc 100755
(executable)
--- a/
stable.py
+++ b/
stable.py
@@
-65,7
+65,7
@@
def parse_args():
temp_gen_paramses = [None]
if parsed_args.defaults_from_stdin:
temp_gen_paramses = []
- for line in
stdin.readlines()
:
+ for line in
[l for l in stdin.readlines() if len(l.rstrip())]
:
temp_gen_paramses += [GenParams.from_str(line)]
parsed_args.models = []
parsed_args.gen_paramses = []