Fix the version display

This commit is contained in:
Chris Eppstein 2010-11-15 17:41:18 -08:00
parent 5f11b126e6
commit 7eb7eff7f7

View File

@ -107,6 +107,6 @@ end
def compass_version
v = Compass.version
"#{v[:major]}.#{v[:minor]}.#{v[:teeny]}.#{v[:build]}"
"#{v[:major]}.#{v[:minor]}#{"."+v[:state] if v[:state]}.#{v[:build]}"
end