From 17925795bc7780b0fa8cc22d7a546c6202de6757 Mon Sep 17 00:00:00 2001 From: rdb Date: Mon, 28 Feb 2011 18:45:19 +0000 Subject: [PATCH] little warning --- direct/src/p3d/pdeploy.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/direct/src/p3d/pdeploy.py b/direct/src/p3d/pdeploy.py index ee1852099e..50d4bf4565 100644 --- a/direct/src/p3d/pdeploy.py +++ b/direct/src/p3d/pdeploy.py @@ -246,6 +246,7 @@ elif deploy_mode == 'installer': if includeRequires: tokens["verify_contents"] = "never" i = Installer(appFilename, shortname, fullname, version, tokens = tokens) + i.includeRequires = includeRequires i.licensename = licensename i.licensefile = licensefile if authorid: @@ -254,7 +255,9 @@ elif deploy_mode == 'installer': i.authorname = authorname if authoremail: i.authoremail = authoremail - i.includeRequires = includeRequires + if not authorname or not authoremail or not authorid: + print "Using author \"%s\" <%s> with ID %s" % \ + (i.authorname, i.authoremail, i.authorid) if currentPlatform: platform = PandaSystem.getPlatform()