mirror of
https://github.com/openSUSE/osc.git
synced 2024-12-28 18:56:15 +01:00
Do not choke on operators < and > in spec files
This commit is contained in:
parent
74ed6a5b9a
commit
89cef1f8c1
@ -21,7 +21,9 @@ def namespace(name):
|
||||
OPERATOR_BY_FLAGS = {
|
||||
"EQ" : "=",
|
||||
"LE" : "<=",
|
||||
"GE" : ">="
|
||||
"GE" : ">=",
|
||||
"LT" : "<",
|
||||
"GT" : ">"
|
||||
}
|
||||
|
||||
def primaryPath(directory):
|
||||
|
Loading…
Reference in New Issue
Block a user