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 0e295522 authored by ulrich_y's avatar ulrich_y
Browse files

Minor changes to create-menu and bug fix in submit

parent 1240a5d1
No related branches found
No related tags found
No related merge requests found
...@@ -136,6 +136,7 @@ def create_menu( ...@@ -136,6 +136,7 @@ def create_menu(
xiloop = ( xiloop = (
"R" in part or # real corrections "R" in part or # real corrections
"F" in part or # real-virtual corrections
"CT" in part or # explicit counter term "CT" in part or # explicit counter term
("V" in part and # virtual corrections and ... ("V" in part and # virtual corrections and ...
"CT" not in "".join(stats.keys())) # ... never and explicit CT "CT" not in "".join(stats.keys())) # ... never and explicit CT
...@@ -279,10 +280,12 @@ def parseargs(): ...@@ -279,10 +280,12 @@ def parseargs():
args['xicuts'] = parsed.xi args['xicuts'] = parsed.xi
if parsed.stat: if parsed.stat:
args['stats'] = defaults['stats'] args['stats'] = {}
for stat in parsed.stat: for stat in parsed.stat:
s = stat.split(',') s = stat.split(',')
args['stats'][s[0]] = tuple(parsestat(i) for i in s[1:]) args['stats'][s[0]] = tuple(parsestat(i) for i in s[1:])
else:
args['stats'] = defaults['stats']
if parsed.flavour: if parsed.flavour:
args['flavour'] = parsed.flavour args['flavour'] = parsed.flavour
......
...@@ -83,7 +83,7 @@ EOF ...@@ -83,7 +83,7 @@ EOF
trap SIGINT trap SIGINT
for i in {5..1} ; do for i in {5..1} ; do
echo -ne "\rBlocking in in ${i}s\r" echo -ne "\rBlocking in in ${i}s\r"
sleep 1 sleep 1 || exit 0
done done
echo "Trap added! " echo "Trap added! "
echo `list_descendants $$` echo `list_descendants $$`
......
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