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

[minion-cvs] Fix bug found by xenophon: when validating a list of re...



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

Modified Files:
	ClientMain.py 
Log Message:
Fix bug found by xenophon: when validating a list of reply blocks
before reading a reply message from the terminal, we used to look in
the old (0.0.5) data structure for the list of SURBs.


Index: ClientMain.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/lib/mixminion/ClientMain.py,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -d -r1.138 -r1.139
--- ClientMain.py	8 Dec 2003 07:13:58 -0000	1.138
+++ ClientMain.py	15 Dec 2003 19:20:36 -0000	1.139
@@ -1120,7 +1120,7 @@
         # from stdin.
         surblog = client.openSURBLog()
         try:
-            s = surblog.findUnusedSURBs(parser.path2)
+            s = surblog.findUnusedSURBs(parser.surbList)
             if s is None:
                 raise UIError("No unused and unexpired reply blocks found.")
         finally: