Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Gregory Ashton
PyFstat
Commits
01b6f341
Commit
01b6f341
authored
Apr 04, 2017
by
Gregory Ashton
Browse files
Update to handel ; sep list of sts matches
parent
ba48f909
Changes
1
Hide whitespace changes
Inline
Side-by-side
pyfstat/core.py
View file @
01b6f341
...
...
@@ -134,7 +134,8 @@ class BaseSearchClass(object):
subprocess
.
call
([
cmd
],
shell
=
True
)
def
get_list_of_matching_sfts
(
self
):
matches
=
glob
.
glob
(
self
.
sftfilepath
)
matches
=
[
glob
.
glob
(
p
)
for
p
in
self
.
sftfilepath
]
matches
=
[
item
for
sublist
in
matches
for
item
in
sublist
]
if
len
(
matches
)
>
0
:
return
matches
else
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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