~tsarev/taskcoach/1.3

« back to all changes in this revision

Viewing changes to taskcoachlib/gui/wizard/csvimport.py

  • Committer: fniessink
  • Date: 2011-07-20 19:23:17 UTC
  • Revision ID: svn-v4:648457a2-254a-0410-87ef-a9f7caebb725:branches/Release1_3_Branch/taskcoach:4582
Merge from 1.2 branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
'''
18
18
 
19
19
 
20
 
import wx, os, csv, tempfile
 
20
import wx, csv, tempfile
21
21
from taskcoachlib.i18n import _
22
22
from taskcoachlib.thirdparty import chardet
23
23
from taskcoachlib import meta
121
121
        wx.EVT_RADIOBUTTON(self.escapeQuote, wx.ID_ANY, self.OnOptionChanged)
122
122
        wx.EVT_TEXT(self.escapeChar, wx.ID_ANY, self.OnOptionChanged)
123
123
 
124
 
    def OnOptionChanged(self, event):
 
124
    def OnOptionChanged(self, event): # pylint: disable-msg=W0613
125
125
        self.escapeChar.Enable(self.escapeQuote.GetValue())
126
126
 
127
127
        if self.filename is None: