[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[minion-cvs] Fix portability bug w.r.t. Python 2.0
Update of /home/minion/cvsroot/src/minion/lib/mixminion
In directory moria.seul.org:/tmp/cvs-serv7031/lib/mixminion
Modified Files:
ServerInfo.py
Log Message:
Fix portability bug w.r.t. Python 2.0
Index: ServerInfo.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/lib/mixminion/ServerInfo.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- ServerInfo.py 30 Oct 2002 02:19:39 -0000 1.15
+++ ServerInfo.py 30 Oct 2002 02:29:11 -0000 1.16
@@ -449,7 +449,6 @@
if len(ip_set) > 1:
raise IPGuessError("Multiple addresses found: %s" % (
- ", ".join(ip_set)))
+ ", ".join(ip_set.keys())))
return ip_set.keys()[0]
-