Skip to content

Commit

Permalink
Remove delimiter print from every text operation.
Browse files Browse the repository at this point in the history
  • Loading branch information
wadetb committed Nov 6, 2016
1 parent ac6e13a commit ee5a9a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csvplugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __init__(self, view):
if not isstr(self.delimiter) or len(self.delimiter) != 1:
print("'{0}' is not a valid delimiter, reverting to ','.".format(self.delimiter))
self.delimiter = ','
print("Using delimiter: '{0}'.".format(self.delimiter))
#print("Using delimiter: '{0}'.".format(self.delimiter))

self.auto_quote = self.GetViewSetting( 'auto_quote', True )

Expand Down

0 comments on commit ee5a9a3

Please sign in to comment.