~ubuntu-branches/ubuntu/trusty/coherence/trusty

« back to all changes in this revision

Viewing changes to coherence/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Quette
  • Date: 2007-08-02 10:48:40 UTC
  • Revision ID: james.westby@ubuntu.com-20070802104840-ip4jij6unufqno1p
Tags: upstream-0.4.0
ImportĀ upstreamĀ versionĀ 0.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import platform
 
2
 
 
3
__version_info__ = (0,4,0)
 
4
__version__ = '%d.%d.%d' % (__version_info__[0],__version_info__[1],__version_info__[2],)
 
5
 
 
6
SERVER_ID = ','.join([platform.system(),
 
7
                      platform.release(),
 
8
                      'UPnP/1.0,Coherence UPnP framework',
 
9
                      __version__])