Skip to content

Commit 2ca1781

Browse files
committed
previous commit
1 parent b3bc6e1 commit 2ca1781

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/cdo/cdo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ def __getOperators(self): # {{{
315315
for i, op in enumerate(ops):
316316
_ios_splitted = ios[i][1:len(ios[i]) - 1].split('|')
317317
if len(_ios_splitted) > 0 :
318-
operators[op] = int(ios[i][1:len(ios[i]) - 1].split('|')[1])
318+
operators[op] = int(_ios_splitted[1])
319319

320320
return operators # }}}
321321

0 commit comments

Comments
 (0)