Changed how environment variable and homepage strings are calculated.
1 parent 39ca4ae commit df189d0f481d4e1a5b45a2774d7a891ead1c8149
@tundra tundra authored on 30 Jan 2010
Showing 1 changed file
View
10
tren.py
 
# Program Information
 
PROGNAME = "tren.py"
PROGENV = PROGNAME.split(".py")[0].upper()
RCSID = "$Id: tren.py,v 1.129 2010/01/30 20:00:40 tundra Exp $"
BASENAME = PROGNAME.split(".py")[0]
PROGENV = BASENAME.upper()
RCSID = "$Id: tren.py,v 1.130 2010/01/30 20:04:58 tundra Exp $"
VERSION = RCSID.split()[2]
 
# Copyright Information
 
RIGHTS = "All Rights Reserved."
COPYRIGHT = "Copyright %s %s, %s %s" % (CPRT, DATE, OWNER, RIGHTS)
 
PROGVER = PROGNAME + " " + VERSION + (" - %s" % COPYRIGHT)
HOMEPAGE = "http://www.tundraware.com/Software/tren\n"
HOMEPAGE = "http://www.tundraware.com/Software/%s\n" % BASENAME
 
 
 
#----------------------------------------------------------#
# Variables User Might Change #