Removed python2 code in imaputil

This code is marked as python2, could be removed.
This commit is contained in:
Rodolfo García Peñas (kix) 2020-08-29 09:07:15 +02:00
parent a655fa4fc2
commit 99f85737c5

View File

@ -127,12 +127,6 @@ def imapsplit(imapstring):
(quoted, rest) = __split_quoted(workstr)
retval.append(quoted)
workstr = rest
else:
splits = None
# Python2
if hasattr(string, 'split'):
splits = string.split(workstr, maxsplit = 1)
# Python3
else:
splits = str.split(workstr, maxsplit=1)
splitslen = len(splits)