From afc34268a7da0e565e4d3bc9b008468d64d93fa3 Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Thu, 6 Aug 2015 15:32:15 -0400 Subject: [PATCH] Change version checking to check for master branch instead of SteamEngine --- Cura/util/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/util/version.py b/Cura/util/version.py index d9f63a84..61137721 100644 --- a/Cura/util/version.py +++ b/Cura/util/version.py @@ -33,7 +33,7 @@ def getVersion(getGitVersion = True): except: pass - gitHeadFile = gitPath + "/.git/refs/heads/SteamEngine" + gitHeadFile = gitPath + "/.git/refs/heads/master" if os.path.isfile(gitHeadFile): if not getGitVersion: return "dev" -- 2.30.2