Skip to content

Commit 3664b39

Browse files
PY2 compatibility added
1 parent 2bb0948 commit 3664b39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

splunklib/searchcommands/generating_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def process(self, argv=sys.argv, ifile=sys.stdin, ofile=sys.stdout, allow_empty_
243243
if not allow_empty_input:
244244
raise ValueError("allow_empty_input cannot be False for Generating Commands")
245245
else:
246-
return super().process(argv=argv, ifile=ifile, ofile=ofile, allow_empty_input=True)
246+
return super(GeneratingCommand, self).process(argv=argv, ifile=ifile, ofile=ofile, allow_empty_input=True)
247247

248248
# endregion
249249

0 commit comments

Comments
 (0)