# HG changeset patch # User Bernhard Herzog # Date 1231535631 0 # Node ID d2ddd037ddaf9ed6ff3509e65918ed75422fa35d # Parent 6199f02bdd3263a1ee632fee458f8324a9a76c26 Fix a bug introduced by the subversion interface reorganization diff -r 6199f02bdd32 -r d2ddd037ddaf treepkg/subversion.py --- a/treepkg/subversion.py Thu Jan 08 19:58:06 2009 +0000 +++ b/treepkg/subversion.py Fri Jan 09 21:13:51 2009 +0000 @@ -79,7 +79,7 @@ for subdir in self.external_subdirs: absdir = os.path.join(destdir, subdir) if not os.path.isdir(absdir): - subversion.export(os.path.join(localdir, subdir), absdir) + export(os.path.join(localdir, subdir), absdir) def last_changed_revision(self, localdir): """Returns the last changed revision of the working copy in localdir"""