[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[minion-cvs] Fix syntax error



Update of /home/minion/cvsroot/src/minion/lib/mixminion/server
In directory moria.mit.edu:/tmp/cvs-serv1221/lib/mixminion/server

Modified Files:
	ServerKeys.py 
Log Message:
Fix syntax error

Index: ServerKeys.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/lib/mixminion/server/ServerKeys.py,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- ServerKeys.py	29 May 2003 02:01:34 -0000	1.31
+++ ServerKeys.py	29 May 2003 02:15:01 -0000	1.32
@@ -131,7 +131,7 @@
             LOG.trace("Found key %s (valid from %s to %s)",
                       dirname, formatDate(t1), formatDate(t2))
 
-        LOG.debug("Found %s keys.", len(self.keySets)
+        LOG.debug("Found %s keys.", len(self.keySets))
 
         # Now, sort the key intervals by starting time.
         self.keySets.sort()
@@ -955,7 +955,9 @@
     # This is for debugging: we try to parse and validate the descriptor
     #   we just made.
     # FFFF Remove this once we're more confident.
-    ServerInfo(string=info)
+    inf = ServerInfo(string=info)
+    ok = checkDescriptorConsistency(inf, config, log=0, isPublished=0)
+    assert ok
 
     return info