Mercurial > p > roundup > code
diff frontends/ZRoundup/__init__.py @ 1096:fa7df238e2d4
More cleaning up of configuration, and the "instance" -> "tracker" renaming.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 10 Sep 2002 03:01:20 +0000 |
| parents | e5826025eeb7 |
| children | 1621df560512 |
line wrap: on
line diff
--- a/frontends/ZRoundup/__init__.py Tue Sep 10 02:37:28 2002 +0000 +++ b/frontends/ZRoundup/__init__.py Tue Sep 10 03:01:20 2002 +0000 @@ -14,15 +14,15 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.2 2002-09-10 01:07:05 richard Exp $ +# $Id: __init__.py,v 1.3 2002-09-10 03:01:18 richard Exp $ # __version__='1.0' import os # figure where ZRoundup is installed here = None -if os.environ.has_key('INSTANCE_HOME'): - here = os.environ['INSTANCE_HOME'] +if os.environ.has_key('TRACKER_HOME'): + here = os.environ['TRACKER_HOME'] path = os.path.join(here, 'Products', 'ZRoundup') if not os.path.exists(path): path = os.path.join(here, 'lib', 'python', 'Products', 'ZRoundup')
