We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3bc6e1 commit 2ca1781Copy full SHA for 2ca1781
python/cdo/cdo.py
@@ -315,7 +315,7 @@ def __getOperators(self): # {{{
315
for i, op in enumerate(ops):
316
_ios_splitted = ios[i][1:len(ios[i]) - 1].split('|')
317
if len(_ios_splitted) > 0 :
318
- operators[op] = int(ios[i][1:len(ios[i]) - 1].split('|')[1])
+ operators[op] = int(_ios_splitted[1])
319
320
return operators # }}}
321
0 commit comments