From 48e5f61391cef071bee3abb3d05993a315c84180 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Thu, 31 Oct 2013 17:35:13 +0100 Subject: [PATCH] Forgot to actually use the real repotype variable --- fdroidserver/checkupdates.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/fdroidserver/checkupdates.py b/fdroidserver/checkupdates.py index 0006d178..382d758c 100644 --- a/fdroidserver/checkupdates.py +++ b/fdroidserver/checkupdates.py @@ -159,17 +159,17 @@ def check_repomanifest(app, sdk_path, branch=None): # Set up vcs interface and make sure we have the latest code... vcs = common.getvcs(app['Repo Type'], app['Repo'], build_dir, sdk_path) - if vcs.repotype() == 'git': + if repotype == 'git': if branch: branch = 'origin/'+branch vcs.gotorevision(branch) - elif vcs.repotype() == 'git-svn': + elif repotype == 'git-svn': vcs.gotorevision(branch) - elif vcs.repotype() == 'svn': + elif repotype == 'svn': vcs.gotorevision(None) - elif vcs.repotype() == 'hg': + elif repotype == 'hg': vcs.gotorevision(branch) - elif vcs.repotype() == 'bzr': + elif repotype == 'bzr': vcs.gotorevision(None) flavour = None