We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84dab82 commit 79ad17aCopy full SHA for 79ad17a
1 file changed
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