[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
Some patches of ClientAPI
Hi Nick and all,
I have been doing some tests of the client API and found a couple of typos.
Would you prefer if I just commit changes directly in the future? I quite like
you have a look at what gets applied, since I am still a Jedi apprentice :-)
A couple of patches:
*** /homes/gd216/lib/python2.2/site-packages/mixminion/ClientDirectory.py
2005-05-26 16:09:03.000000000 +0100
--- /homes/gd216/scratch/MixMinion/src/minion/lib/mixminion/ClientDirectory.py
2005-05-25 14:28:22.000000000 +0100
***************
*** 892,896 ****
def getAllNicknames(self):
"""DOCDOC"""
! lst = self.byNickname.keys()
lst.sort()
return lst
--- 892,896 ----
def getAllNicknames(self):
"""DOCDOC"""
! lst = self.byNicknames.keys()
lst.sort()
return lst
AND
*** /homes/gd216/lib/python2.2/site-packages/mixminion/ClientAPI.py
2005-05-26 16:09:08.000000000 +0100
--- /homes/gd216/scratch/MixMinion/src/minion/lib/mixminion/ClientAPI.py
2005-05-24 18:27:44.000000000 +0100
***************
*** 29,34 ****
import mixminion.Config
import mixminion.ClientUtils
- import mixminion.ClientDirectory
- import os
# The operations in this file raise 'MixError' on failure.
--- 29,32 ----
***************
*** 109,114 ****
self._logHandler = None
self._statusLogHandler = None
! self._clientDirectory = None
!
# ------------------------------------------------------------
# Configuration functions
--- 107,111 ----
self._logHandler = None
self._statusLogHandler = None
!
# ------------------------------------------------------------
# Configuration functions