ajack       2004/03/09 15:20:33

  Modified:    python/gump/document resolver.py
               python/gump engine.py
  Log:
  Try again (hope I get it this time, I'm out of time today...)
  
  Revision  Changes    Path
  1.16      +4 -4      gump/python/gump/document/resolver.py
  
  Index: resolver.py
  ===================================================================
  RCS file: /home/cvs/gump/python/gump/document/resolver.py,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- resolver.py       28 Feb 2004 00:08:49 -0000      1.15
  +++ resolver.py       9 Mar 2004 23:20:32 -0000       1.16
  @@ -346,7 +346,7 @@
           if not root: root=self.rootDir
           if not os.path.exists(root):
               log.debug('Make directory : [' + root + ']')
  -            os.mkdir(root)
  +            os.makedirs(root)
           for p in path:
               root=os.path.join(root,p)
               if not os.path.exists(root):
  
  
  
  1.80      +4 -3      gump/python/gump/engine.py
  
  Index: engine.py
  ===================================================================
  RCS file: /home/cvs/gump/python/gump/engine.py,v
  retrieving revision 1.79
  retrieving revision 1.80
  diff -u -r1.79 -r1.80
  --- engine.py 9 Mar 2004 21:13:18 -0000       1.79
  +++ engine.py 9 Mar 2004 23:20:32 -0000       1.80
  @@ -370,9 +370,10 @@
       
               if module.okToPerformWork():
               
  -                sourcedir = 
os.path.abspath(os.path.join(workspace.getCvsDirectory(), \
  -                                        module.name)) # todo allow override
  -                destdir = os.path.abspath(workspace.getBaseDirectory())
  +                sourcedir = os.path.abspath( \
  +                                os.path.join(        workspace.getCvsDirectory(), \
  +                                                module.name)) # todo allow override
  +                destdir = module.getSourceDirectory()
                   
                   # Perform the sync...
                   try:
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to