oops, properly do default values

This commit is contained in:
rdb 2011-02-28 18:30:24 +00:00
parent 8cfb6d4f83
commit ee7e79b1a5
1 changed files with 6 additions and 3 deletions

View File

@ -248,9 +248,12 @@ elif deploy_mode == 'installer':
i = Installer(appFilename, shortname, fullname, version, tokens = tokens)
i.licensename = licensename
i.licensefile = licensefile
i.authorid = authorid
i.authorname = authorname
i.authoremail = authoremail
if authorid:
i.authorid = authorid
if authorname:
i.authorname = authorname
if authoremail:
i.authoremail = authoremail
i.includeRequires = includeRequires
if currentPlatform: