Skip to content

Commit

Permalink
do not set a title from a recursively defined title
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Fiers committed Jul 20, 2012
1 parent fcd7ca8 commit 56e620b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 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,8 @@ def new(job, args):
wd = job.wd
#targetdir = args.directory
title = ""
if job.conf.title:

if job.conf.title and job.conf.is_local('title'):
title = job.conf.title
if args.title:
title = args.title
Expand Down

0 comments on commit 56e620b

Please sign in to comment.