Mercurial > p > roundup > code
diff frontends/ZRoundup/__init__.py @ 1256:1621df560512
get ZRoundup working... still not quite right
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 10 Oct 2002 03:47:27 +0000 |
| parents | fa7df238e2d4 |
| children | 8169e97a6f26 |
line wrap: on
line diff
--- a/frontends/ZRoundup/__init__.py Thu Oct 10 03:47:00 2002 +0000 +++ b/frontends/ZRoundup/__init__.py Thu Oct 10 03:47:27 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.3 2002-09-10 03:01:18 richard Exp $ +# $Id: __init__.py,v 1.4 2002-10-10 03:47:27 richard Exp $ # __version__='1.0' import os # figure where ZRoundup is installed here = None -if os.environ.has_key('TRACKER_HOME'): - here = os.environ['TRACKER_HOME'] +if os.environ.has_key('INSTANCE_HOME'): + here = os.environ['INSTANCE_HOME'] path = os.path.join(here, 'Products', 'ZRoundup') if not os.path.exists(path): path = os.path.join(here, 'lib', 'python', 'Products', 'ZRoundup')
