Skip to content

Commit 2321631

Browse files
author
Gauvain Pocentek
committed
fix parsing of options
1 parent 4c998ea commit 2321631

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitlab

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ for arg in sys.argv[1:]:
124124
continue
125125

126126
k, v = arg.split('=', 1)
127-
k = k.strip().replace('_', '-')
127+
k = k.strip().replace('-', '_')
128128
v = v.strip()
129129

130130
if k == 'gitlab':

0 commit comments

Comments
 (0)