Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
150d860f
Commit
150d860f
authored
Nov 08, 2020
by
Hejing Li
Browse files
run.py: handle no filter arguments case
parent
c33002ce
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
experiments/run.py
experiments/run.py
+1
-1
No files found.
experiments/run.py
View file @
150d860f
...
@@ -100,7 +100,7 @@ if not args.pickled:
...
@@ -100,7 +100,7 @@ if not args.pickled:
for
e
in
experiments
:
for
e
in
experiments
:
# apply filter if any specified
# apply filter if any specified
if
len
(
args
.
filter
)
>
0
:
if
(
args
.
filter
)
and
(
len
(
args
.
filter
)
>
0
)
:
match
=
False
match
=
False
for
f
in
args
.
filter
:
for
f
in
args
.
filter
:
if
fnmatch
.
fnmatch
(
e
.
name
,
f
):
if
fnmatch
.
fnmatch
(
e
.
name
,
f
):
...
...
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