This commit is contained in:
Kovid Goyal 2016-11-13 22:39:21 +05:30
parent 1363cd7c37
commit 94ca8a615b

View File

@ -5,7 +5,7 @@ __license__ = 'GPL v3'
__copyright__ = '2010, Kovid Goyal <kovid@kovidgoyal.net>' __copyright__ = '2010, Kovid Goyal <kovid@kovidgoyal.net>'
__docformat__ = 'restructuredtext en' __docformat__ = 'restructuredtext en'
import textwrap import textwrap, re
from PyQt5.Qt import QAbstractTableModel, QFont, Qt from PyQt5.Qt import QAbstractTableModel, QFont, Qt
@ -148,7 +148,7 @@ class EmailAccounts(QAbstractTableModel): # {{{
if aval: if aval:
self.tags[account] = aval self.tags[account] = aval
elif col == 1: elif col == 1:
self.accounts[account][0] = unicode(value or '').upper() self.accounts[account][0] = re.sub(r'\s+', ',', unicode(value or '').upper())
elif col == 0: elif col == 0:
na = unicode(value or '') na = unicode(value or '')
from email.utils import parseaddr from email.utils import parseaddr
@ -287,4 +287,3 @@ if __name__ == '__main__':
from PyQt5.Qt import QApplication from PyQt5.Qt import QApplication
app = QApplication([]) app = QApplication([])
test_widget('Sharing', 'Email') test_widget('Sharing', 'Email')