prevent exception when svn info output not as expected

This commit is contained in:
Alan Hamlett 2015-09-07 21:28:19 -07:00
parent eff141187b
commit 1194bc004e
1 changed files with 6 additions and 2 deletions

View File

@ -32,10 +32,14 @@ class Subversion(BaseProject):
return self._find_project_base(self.path)
def name(self):
return u(self.info['Repository Root'].split('/')[-1])
if 'Repository Root' not in self.info:
return None
return u(self.info['Repository Root'].split('/')[-1].split('\\')[-1])
def branch(self):
return u(self.info['URL'].split('/')[-1])
if 'URL' not in self.info:
return None
return u(self.info['URL'].split('/')[-1].split('\\')[-1])
def _find_binary(self):
if self.binary_location: