[Zope3-checkins] SVN: Zope3/trunk/zopeskel/bin/runzope.in Fixed bug that prevented runzope from correctly setting SOFTWARE_HOME. The

Benji York benji at zope.com
Mon Jan 3 13:43:40 EST 2005


Log message for revision 28712:
  Fixed bug that prevented runzope from correctly setting SOFTWARE_HOME.  The
  path was stuck in a string with bare backslashes.
  

Changed:
  U   Zope3/trunk/zopeskel/bin/runzope.in

-=-
Modified: Zope3/trunk/zopeskel/bin/runzope.in
===================================================================
--- Zope3/trunk/zopeskel/bin/runzope.in	2005-01-02 15:16:29 UTC (rev 28711)
+++ Zope3/trunk/zopeskel/bin/runzope.in	2005-01-03 18:43:40 UTC (rev 28712)
@@ -20,7 +20,7 @@
 import sys
 
 
-SOFTWARE_HOME = "<<SOFTWARE_HOME>>"
+SOFTWARE_HOME = r"<<SOFTWARE_HOME>>"
 INSTANCE_HOME = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
 CONFIG_FILE = os.path.join(INSTANCE_HOME, "etc", "zope.conf")
 



More information about the Zope3-Checkins mailing list