~and471/ubuntu/maverick/fretsonfire/fix-599525

« back to all changes in this revision

Viewing changes to src/Version.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthew Johnson
  • Date: 2009-03-02 23:17:47 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20090302231747-24p9ir71x4709rdt
Tags: upstream-1.3.110.dfsg
ImportĀ upstreamĀ versionĀ 1.3.110.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
import sys
24
24
import os
25
 
VERSION = '1.2'
 
25
VERSION = '1.3'
26
26
 
27
27
def appName():
28
28
  return "fretsonfire"
29
29
 
30
30
def revision():
31
 
  return int("$LastChangedRevision: 512 $".split(" ")[1])
 
31
  return int("$LastChangedRevision: 110 $".split(" ")[1])
32
32
 
33
33
def version():
34
34
  return "%s.%d" % (VERSION, revision())