mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-09 00:40:11 +01:00
Typo in hg handling
This commit is contained in:
parent
5ac41e7ca7
commit
b4b8b0d6a3
@ -564,7 +564,7 @@ class vcs_hg(vcs):
|
||||
myfile.write("\n[extensions]\nhgext.purge=\n")
|
||||
if subprocess.call(['hg', 'purge', '--all'], cwd=self.local) != 0:
|
||||
raise VCSException("HG purge failed")
|
||||
elif p.resultcode != 0:
|
||||
elif p.returncode != 0:
|
||||
raise VCSException("HG purge failed")
|
||||
|
||||
def gettags(self):
|
||||
|
Loading…
Reference in New Issue
Block a user