diff --git a/staging/patchupdate.py b/staging/patchupdate.py index f13294bd..00d2863c 100755 --- a/staging/patchupdate.py +++ b/staging/patchupdate.py @@ -177,7 +177,7 @@ def _latest_wine_commit(commit=None): if not os.path.isdir(config.path_wine): raise PatchUpdaterError("Please create a symlink to the wine repository in %s" % config.path_wine) if commit is None: - commit = subprocess.check_output(["git", "rev-parse", "origin/master"], cwd=config.path_wine).strip() + commit = subprocess.check_output(["git", "rev-parse", "origin/stable"], cwd=config.path_wine).strip() assert len(commit) == 40 and commit == commit.lower() return commit