Skip to content

Commit

Permalink
Do not choke on operators < and > in spec files
Browse files Browse the repository at this point in the history
  • Loading branch information
fridrich authored and lethliel committed Dec 12, 2018
1 parent c49f8e4 commit a41dd20
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion osc/util/repodata.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ def namespace(name):
OPERATOR_BY_FLAGS = {
"EQ" : "=",
"LE" : "<=",
"GE" : ">="
"GE" : ">=",
"LT" : "<",
"GT" : ">"
}

def primaryPath(directory):
Expand Down

0 comments on commit a41dd20

Please sign in to comment.