Skip to content

Commit

Permalink
fix parsing of options
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauvain Pocentek committed Jun 29, 2013
1 parent 4c998ea commit 2321631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitlab
Expand Up @@ -124,7 +124,7 @@ for arg in sys.argv[1:]:
continue

k, v = arg.split('=', 1)
k = k.strip().replace('_', '-')
k = k.strip().replace('-', '_')
v = v.strip()

if k == 'gitlab':
Expand Down

0 comments on commit 2321631

Please sign in to comment.