Update of /cvsroot/mailman/mailman3/bin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29719

Modified Files:
        qrunner 
Log Message:
main(): Fixed a configuration object reference.  Fixed a command line option
variable name.


Index: qrunner
===================================================================
RCS file: /cvsroot/mailman/mailman3/bin/qrunner,v
retrieving revision 3.1
retrieving revision 3.2
diff -u -d -r3.1 -r3.2
--- qrunner     20 Apr 2004 04:11:36 -0000      3.1
+++ qrunner     1 May 2004 18:10:56 -0000       3.2
@@ -222,7 +222,7 @@
         # Anything else we have to handle a bit more specially
         qrunners = []
         for qrname, i in options.runners:
-            qrclass = configuration.qrunners[qrname][0]
+            qrclass = configuration.qrunner.qrunners[qrname][0]
             qrunner = make_qrunner(qrname, i, True)
             qrunners.append(qrunner)
         # This class is used to manage the main loop
@@ -238,7 +238,7 @@
                     log.info('Now doing a %s qrunner iteration',
                              qrunner.__class__.__bases__[0].__name__)
                 qrunner.run()
-            if options.once:
+            if not options.loop:
                 break
         log.info('Main qrunner loop exiting.')
     return loop.status


_______________________________________________
Mailman-checkins mailing list
[EMAIL PROTECTED]
Unsubscribe: http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to