chiark
/
gitweb
/
~ianmdlvl
/
cura.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da957b7
)
Changed version check to steamengine instead of master
author
Jaime van Kessel
<nallath@gmail.com>
Thu, 19 Sep 2013 08:32:57 +0000
(10:32 +0200)
committer
Jaime van Kessel
<nallath@gmail.com>
Thu, 19 Sep 2013 08:32:57 +0000
(10:32 +0200)
Cura/util/version.py
patch
|
blob
|
history
diff --git
a/Cura/util/version.py
b/Cura/util/version.py
index 2424aa814eded10c43484da95ced998b363000b4..5121216d0cc27eb24bcc0fc89424c106af6d999d 100644
(file)
--- a/
Cura/util/version.py
+++ b/
Cura/util/version.py
@@
-21,7
+21,7
@@
def getVersion(getGitVersion = True):
if os.path.exists(gitPath):
if not getGitVersion:
return "dev"
- f = open(gitPath + "/refs/heads/
master
", "r")
+ f = open(gitPath + "/refs/heads/
SteamEngine
", "r")
version = f.readline()
f.close()
return version.strip()