mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Typo in hg handling
This commit is contained in:
parent
5ac41e7ca7
commit
b4b8b0d6a3
1 changed files with 1 additions and 1 deletions
|
|
@ -564,7 +564,7 @@ class vcs_hg(vcs):
|
||||||
myfile.write("\n[extensions]\nhgext.purge=\n")
|
myfile.write("\n[extensions]\nhgext.purge=\n")
|
||||||
if subprocess.call(['hg', 'purge', '--all'], cwd=self.local) != 0:
|
if subprocess.call(['hg', 'purge', '--all'], cwd=self.local) != 0:
|
||||||
raise VCSException("HG purge failed")
|
raise VCSException("HG purge failed")
|
||||||
elif p.resultcode != 0:
|
elif p.returncode != 0:
|
||||||
raise VCSException("HG purge failed")
|
raise VCSException("HG purge failed")
|
||||||
|
|
||||||
def gettags(self):
|
def gettags(self):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue