[Checkins] SVN: zope.repositorypolicy/trunk/src/zope/repositorypolicy/project.py - convert relative path to absolute path if needed

Jens Vagelpohl jens at dataflake.org
Wed Mar 17 09:03:17 EDT 2010


Log message for revision 110020:
  - convert relative path to absolute path if needed
  

Changed:
  U   zope.repositorypolicy/trunk/src/zope/repositorypolicy/project.py

-=-
Modified: zope.repositorypolicy/trunk/src/zope/repositorypolicy/project.py
===================================================================
--- zope.repositorypolicy/trunk/src/zope/repositorypolicy/project.py	2010-03-17 12:58:59 UTC (rev 110019)
+++ zope.repositorypolicy/trunk/src/zope/repositorypolicy/project.py	2010-03-17 13:03:16 UTC (rev 110020)
@@ -37,7 +37,7 @@
     copyright_holder = 'Zope Foundation and Contributors'
 
     def __init__(self, working_dir):
-        self.working_dir = working_dir
+        self.working_dir = os.path.abspath(working_dir)
         self.log = []
 
     def run(self):



More information about the checkins mailing list