mirror of
https://github.com/openSUSE/osc.git
synced 2025-01-15 10:06:16 +01:00
Merge pull request #476 from fridrich/master
Do not choke on operators < and > in spec files
This commit is contained in:
commit
7bd9ca485d
@ -21,7 +21,9 @@ def namespace(name):
|
|||||||
OPERATOR_BY_FLAGS = {
|
OPERATOR_BY_FLAGS = {
|
||||||
"EQ" : "=",
|
"EQ" : "=",
|
||||||
"LE" : "<=",
|
"LE" : "<=",
|
||||||
"GE" : ">="
|
"GE" : ">=",
|
||||||
|
"LT" : "<",
|
||||||
|
"GT" : ">"
|
||||||
}
|
}
|
||||||
|
|
||||||
def primaryPath(directory):
|
def primaryPath(directory):
|
||||||
|
Loading…
Reference in New Issue
Block a user