859 """ |
859 """ |
860 try: |
860 try: |
861 name = self.browser.currentItem().fileName() |
861 name = self.browser.currentItem().fileName() |
862 except AttributeError: |
862 except AttributeError: |
863 name = self.browser.currentItem().dirName() |
863 name = self.browser.currentItem().dirName() |
864 name = name.replace(self.project.ppath+os.sep, "") |
864 name = self.project.getRelativePath(name) |
865 self.vcs.svnInfo(self.project.ppath, name) |
865 self.vcs.svnInfo(self.project.ppath, name) |
866 |
866 |
867 def __SVNConfigure(self): |
867 def __SVNConfigure(self): |
868 """ |
868 """ |
869 Private method to open the configuration dialog. |
869 Private method to open the configuration dialog. |