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 84dab82 commit 6ff83e6Copy full SHA for 6ff83e6
splunklib/searchcommands/validators.py
@@ -249,10 +249,10 @@ class List(Validator):
249
class Dialect(csv.Dialect):
250
""" Describes the properties of list option values. """
251
strict = True
252
- delimiter = b','
253
- quotechar = b'"'
+ delimiter = str(',')
+ quotechar = str('"')
254
doublequote = True
255
- lineterminator = b'\n'
+ lineterminator = str('\n')
256
skipinitialspace = True
257
quoting = csv.QUOTE_MINIMAL
258
0 commit comments