Skip to content

Commit d3ca055

Browse files
authored
Merge pull request #750 from KonstantinSchubert/patch-1
Fix small mistake in help string, fix issue #749
2 parents 87c7395 + 330b546 commit d3ca055

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/GangaLHCb/Lib/Applications/GaudiExec.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class GaudiExec(IPrepareApp):
6363
j=Job()
6464
myApp = GaudiExec()
6565
myApp.directory = "$SOMEPATH/DaVinciDev_v40r2"
66-
myApp.options = "$SOMEPATH/DaVinciDev_v40r2/myDaVinciOpts.py"
66+
myApp.options = ["$SOMEPATH/DaVinciDev_v40r2/myDaVinciOpts.py"]
6767
j.application = myApp
6868
j.submit()
6969
@@ -94,7 +94,7 @@ class GaudiExec(IPrepareApp):
9494
_schema = Schema(Version(1, 0), {
9595
# Options created for constructing/submitting this app
9696
'directory': SimpleItem(defvalue=None, typelist=[None, str], comparable=1, doc='A path to the project that you\'re wanting to run.'),
97-
'options': GangaFileItem(defvalue=None, sequence=1, doc='File which contains the options I want to pass to gaudirun.py'),
97+
'options': GangaFileItem(defvalue=None, sequence=1, doc='List of files which contain the options I want to pass to gaudirun.py'),
9898
'uploadedInput': GangaFileItem(defvalue=None, hidden=1, doc='This stores the input for the job which has been pre-uploaded so that it gets to the WN'),
9999
'jobScriptArchive': GangaFileItem(defvalue=None, hidden=1, copyable=0, doc='This file stores the uploaded scripts which are generated fron this app to run on the WN'),
100100
'useGaudiRun': SimpleItem(defvalue=True, doc='Should \'options\' be run as "python options.py data.py" rather than "gaudirun.py options.py data.py"'),

0 commit comments

Comments
 (0)