Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 6931ba5e authored by ulrich_y's avatar ulrich_y
Browse files

pymule create strips the which_piece (#17)

parent 9607ccce
No related branches found
No related tags found
No related merge requests found
...@@ -213,7 +213,7 @@ def interogate(args={}): ...@@ -213,7 +213,7 @@ def interogate(args={}):
if 'stats' not in args: if 'stats' not in args:
pieces = basic_ask( pieces = basic_ask(
"Which pieces", ['0', 'F', 'R'], "Which pieces", ['0', 'F', 'R'],
parser=lambda x: x.split(',') parser=lambda x: [i.strip() for i in x.split(',')]
) )
args['stats'] = {} args['stats'] = {}
for piece in pieces: for piece in pieces:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment