Skip to content

Commit

Permalink
retains title when running moa new
Browse files Browse the repository at this point in the history
  • Loading branch information
mfiers committed May 27, 2012
1 parent 10cd6d4 commit 42fe74b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/python/moa/plugin/system/newjob.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ def new(job, args):

wd = job.wd
targetdir = args.directory
title = args.title
title = ""
if job.conf.title:
title = job.conf.title
if args.title:
title = args.title

template = args.template

params = []
Expand Down

0 comments on commit 42fe74b

Please sign in to comment.