From 131e99adbea2cd5371f2180315b56cb30989951a Mon Sep 17 00:00:00 2001 From: Teja Date: Wed, 15 Jul 2015 11:54:03 +0200 Subject: [PATCH] default branch is "mrbeam-stable" instead of "master" --- .../plugins/softwareupdate/version_checks/github_commit.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/octoprint/plugins/softwareupdate/version_checks/github_commit.py b/src/octoprint/plugins/softwareupdate/version_checks/github_commit.py index 34ca5999..f09986be 100644 --- a/src/octoprint/plugins/softwareupdate/version_checks/github_commit.py +++ b/src/octoprint/plugins/softwareupdate/version_checks/github_commit.py @@ -34,7 +34,8 @@ def get_latest(target, check): if "user" not in check or "repo" not in check: raise ConfigurationInvalid("Update configuration for %s of type github_commit needs all of user and repo" % target) - branch = "master" + #branch = "master" + branch = "mrbeam-stable" if "branch" in check: branch = check["branch"]