Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
gwinc
pygwinc
Commits
59dc8dff
Commit
59dc8dff
authored
Jan 05, 2021
by
Jameson Rollins
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for save arg parsing
parent
a101f0c4
Pipeline
#180840
passed with stages
in 1 minute and 4 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gwinc/__main__.py
gwinc/__main__.py
+2
-2
No files found.
gwinc/__main__.py
View file @
59dc8dff
...
...
@@ -181,11 +181,11 @@ def main():
print
(
fmt
.
format
(
k
,
v
,
ov
))
return
out_files
=
set
(
args
.
save
)
out_data_files
=
set
()
out_plot_files
=
set
()
if
out_files
:
if
args
.
save
:
args
.
plot
=
False
out_files
=
set
(
args
.
save
)
for
path
in
out_files
:
if
os
.
path
.
splitext
(
path
)[
1
]
in
io
.
DATA_SAVE_FORMATS
:
out_data_files
.
add
(
path
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment