diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2015-04-14 20:24:18 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2015-04-14 20:24:18 +0200 |
commit | 93bf61058e210ef88f27c02a3d4bb43152f17b0e (patch) | |
tree | b968dcc2c21c9795da4f789c1144e3f7056b90e3 /cyruslib.py | |
parent | 840c2590ac07df57a3f178a696399305192dd82f (diff) | |
download | pykolab-93bf61058e210ef88f27c02a3d4bb43152f17b0e.tar.gz |
Fix some typos found by the spelling linter
Diffstat (limited to 'cyruslib.py')
-rw-r--r-- | cyruslib.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cyruslib.py b/cyruslib.py index 4697001..b8d5dac 100644 --- a/cyruslib.py +++ b/cyruslib.py @@ -76,7 +76,7 @@ def getflags(test): if len(flag): flags.append(flag) return flags -### A smart function to return an array of splitted strings +### A smart function to return an array of split strings ### and honours quoted strings def splitquote(text): data = text.split(QUOTE) @@ -451,11 +451,11 @@ class CYRUS: self.__verbose( '[LOGOUT] %s: %s' % (res, msg[0]) ) def getEncoding(self): - """Get current input/ouput codification""" + """Get current input/output codification""" return self.ENCODING def setEncoding(self, enc = None): - """Set current input/ouput codification""" + """Set current input/output codification""" if enc is None: self.ENCODING = 'imap' elif enc in self.ENCODING_LIST: |