Skip to content

Commit

Permalink
Merge pull request #750 from KonstantinSchubert/patch-1
Browse files Browse the repository at this point in the history
Fix small mistake in help string, fix issue #749
  • Loading branch information
mesmith75 authored Aug 24, 2016
2 parents 87c7395 + 330b546 commit d3ca055
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/GangaLHCb/Lib/Applications/GaudiExec.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class GaudiExec(IPrepareApp):
j=Job()
myApp = GaudiExec()
myApp.directory = "$SOMEPATH/DaVinciDev_v40r2"
myApp.options = "$SOMEPATH/DaVinciDev_v40r2/myDaVinciOpts.py"
myApp.options = ["$SOMEPATH/DaVinciDev_v40r2/myDaVinciOpts.py"]
j.application = myApp
j.submit()
Expand Down Expand Up @@ -94,7 +94,7 @@ class GaudiExec(IPrepareApp):
_schema = Schema(Version(1, 0), {
# Options created for constructing/submitting this app
'directory': SimpleItem(defvalue=None, typelist=[None, str], comparable=1, doc='A path to the project that you\'re wanting to run.'),
'options': GangaFileItem(defvalue=None, sequence=1, doc='File which contains the options I want to pass to gaudirun.py'),
'options': GangaFileItem(defvalue=None, sequence=1, doc='List of files which contain the options I want to pass to gaudirun.py'),
'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'),
'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'),
'useGaudiRun': SimpleItem(defvalue=True, doc='Should \'options\' be run as "python options.py data.py" rather than "gaudirun.py options.py data.py"'),
Expand Down

0 comments on commit d3ca055

Please sign in to comment.