Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
Really fix problem with pycc parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
oldpatricka committed Oct 3, 2012
1 parent 0147e57 commit 43b489c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion epuharness/harness.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ def _start_rel(self, name=None, module=None, cls=None, config=None,
rel_f.write(rel_yaml) rel_f.write(rel_yaml)


pycc_path = os.path.join(pyon_directory, 'bin/pycc') pycc_path = os.path.join(pyon_directory, 'bin/pycc')
cmd = "%s -D --rel %s --cfg %s --noshell" % (pycc_path, rel_filename) cmd = "%s -D --rel %s --noshell" % (pycc_path, rel_filename)
if sysname is not None: if sysname is not None:
cmd = "%s --sysname %s" % (cmd, sysname) cmd = "%s --sysname %s" % (cmd, sysname)
pid = self.factory.get_pidantic(command=cmd, process_name=name, pid = self.factory.get_pidantic(command=cmd, process_name=name,
Expand Down

0 comments on commit 43b489c

Please sign in to comment.