[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[minion-cvs] Fix a bug in consistency checking; make directory not u...
Update of /home/minion/cvsroot/src/minion/lib/mixminion/server
In directory moria.mit.edu:/tmp/cvs-serv3013/src/minion/lib/mixminion/server
Modified Files:
ServerKeys.py
Log Message:
Fix a bug in consistency checking; make directory not use stderr; cut down on trace
Index: ServerKeys.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/lib/mixminion/server/ServerKeys.py,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- ServerKeys.py 28 May 2003 08:41:04 -0000 1.29
+++ ServerKeys.py 28 May 2003 17:26:53 -0000 1.30
@@ -520,7 +520,8 @@
self.mmtpKeyFile,
self.certFile,
self.descFile,
- self.publishedFile]
+ self.publishedFile,
+ self.hashlogFile ]
files = [f for f in files if os.path.exists(f)]
hashdir, name = os.path.split(self.hashlogFile)
if os.path.exists(hashdir):
@@ -695,7 +696,8 @@
warn("Mismatched contacts: %s in configuration; %s published.",
config_s['Contact-Email'], info_s['Contact'])
- if info_s['Software'] and info_s['Software'] != mixminion.__version__:
+ if info_s['Software'] and info_s['Software'] != (
+ "Mixminion %s" % mixminion.__version__):
warn("Mismatched versions: running %s; %s published.",
mixminion.__version__, info_s['Software'])