Author: gjm
Date: Thu May  9 18:25:05 2013
New Revision: 1480735

URL: http://svn.apache.org/r1480735
Log:
quoting inherited base file to deal with the occassional spaces in paths - #459

Modified:
    bloodhound/trunk/installer/bloodhound_setup.py

Modified: bloodhound/trunk/installer/bloodhound_setup.py
URL: 
http://svn.apache.org/viewvc/bloodhound/trunk/installer/bloodhound_setup.py?rev=1480735&r1=1480734&r2=1480735&view=diff
==============================================================================
--- bloodhound/trunk/installer/bloodhound_setup.py (original)
+++ bloodhound/trunk/installer/bloodhound_setup.py Thu May  9 18:25:05 2013
@@ -179,7 +179,7 @@ class BloodhoundSetup(object):
         new_env =  os.path.join(environments_path, options['project'])
         tracini = os.path.abspath(os.path.join(new_env, 'conf', 'trac.ini'))
         baseini = os.path.abspath(os.path.join(new_env, 'conf', 'base.ini'))
-        options['inherit'] = baseini
+        options['inherit'] = '"' + baseini + '"'
 
         options['db'] = self._generate_db_str(options)
         if 'repo_type' not in options or options['repo_type'] is None:


Reply via email to