Skip to content

Commit

Permalink
Make --setopt handle spaces properly. BZ 1094373
Browse files Browse the repository at this point in the history
  • Loading branch information
megaumi committed May 13, 2014
1 parent 1c55762 commit 0954b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def _parseSetOpts(self, setopts):
if len(vals) < 2:
bad_setopt_ne.append(item)
continue
k,v = vals
k, v = [i.strip() for i in vals]
period = k.rfind('.')
if period != -1:
repo = k[:period]
Expand Down

0 comments on commit 0954b42

Please sign in to comment.