From d120282e9052817befd0e2e5935387dd76beddc5 Mon Sep 17 00:00:00 2001 From: Reinier Heeres Date: Thu, 28 Jun 2012 11:16:17 +0200 Subject: [PATCH] Fix qtlabgui start bug and bump VERSION --- VERSION | 2 +- qtlabgui | 2 +- qtlabgui.bat | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index ed922951..e9221458 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -pre v0.3.0 +pre v0.3.1 diff --git a/qtlabgui b/qtlabgui index 635ac31b..ec9e1530 100755 --- a/qtlabgui +++ b/qtlabgui @@ -1,7 +1,7 @@ #!/bin/bash basedir=`dirname $0` -python $basedir/source/gui/guiclient.py -- "$@" +python $basedir/source/gui/guiclient.py "$@" #To run as interactive ipython shell #This will cause problems when starting the GUI from the main qtlab shell! diff --git a/qtlabgui.bat b/qtlabgui.bat index 06e1a391..c45159fb 100755 --- a/qtlabgui.bat +++ b/qtlabgui.bat @@ -21,4 +21,4 @@ IF EXIST c:\python26\python.exe ( :mark1 :: Run QTlab GUI -start %PYTHON_PATH%\pythonw.exe source/gui/guiclient.py -- %* +start %PYTHON_PATH%\pythonw.exe source/gui/guiclient.py %*