Skip to content

Commit 0021efc

Browse files
authored
Merge pull request #7063 from fstagni/80_fixes61
[8.0] Fixed pyparsing import
2 parents 28d685f + 8d55361 commit 0021efc

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/DIRAC/Resources/Catalog/FCConditionParser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Contains the mechanism to evaluate whether to use or not a catalog
33
"""
4-
from pyparsing import infixNotation, opAssoc, Word, printables, Literal, Suppress
4+
from pyparsing import infix_notation, opAssoc, Word, printables, Literal, Suppress
55

66
from DIRAC import S_OK, gLogger
77
from DIRAC.Core.Utilities.ObjectLoader import ObjectLoader
@@ -131,7 +131,7 @@ def __str__(self):
131131

132132
# We can combine the pluginOperand with boolean expression,
133133
# and prioritized by squared bracket
134-
__boolExpr = infixNotation(
134+
__boolExpr = infix_notation(
135135
__pluginOperand,
136136
[
137137
("!", 1, opAssoc.RIGHT, _BoolNot),

src/DIRAC/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,5 @@ def extension_metadata():
323323
"priority": 0,
324324
"setups": {
325325
"DIRAC-Certification": "https://lbcertifdirac70.cern.ch:9135/Configuration/Server",
326-
"DIRAC-CertifOauth": "https://lbcertifdiracoauth.cern.ch:9135/Configuration/Server",
327326
},
328327
}

0 commit comments

Comments
 (0)