Changeset: 9b657272a3f8 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=9b657272a3f8
Modified Files:
        testing/Mtest.py.in
Branch: default
Log Message:

Mtest: Use a more pythonic way to get an empty config value.


diffs (16 lines):

diff --git a/testing/Mtest.py.in b/testing/Mtest.py.in
--- a/testing/Mtest.py.in
+++ b/testing/Mtest.py.in
@@ -3044,11 +3044,9 @@
     if not par['M5'] and par['PACKAGE'] not in ('common', 'clients', 'gdk', 
'java'):
         par['M5'] = True
 
-    config = opts.get('config')
+    config = opts.get('config', '')
     if config:
         config = ' "--config=%s"' % config
-    else:
-        config = ''
 
     par['ALGEBRA'] = opts.get('algebra', 0)
     par['NOALGEBRA'] = opts.get('no-algebra', 0)
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to