Commit fc279d4f authored by Patrick Shriwise's avatar Patrick Shriwise
Browse files

A couple of tweaks for the workbench rte

parent 7e4d2b15
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ class PyGriffinRuntimeEnvironment(workbench.WorkbenchRuntimeEnvironment):
    def run_args(self, options):
        """returns a list of arguments to pass to the given executable"""
        # build argument list
        args = ["-i", options.input, "-l", "griffin.log"]
        args = ["-i", options.input]

        # TODO add application unique arguments
        return args
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ if __name__ == '__main__':

    ap.add_argument('-l',
                    '--logfile',
                    default=None,
                    default='griffin.log',
                    type=str, help="Log file")
    args = ap.parse_args()