aboutsummaryrefslogtreecommitdiff
blob: 402a339b73176cf1bbc0a3bbac163658e14106cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/python
# -*- coding: utf-8 -*-
#################################################################################
# LAYMAN VERSION
#################################################################################
# File:       version.py
#
#             Current version number
#
# Copyright:
#             (c) 2005 - 2009 Gunnar Wrobel
#             (c) 2009        Sebastian Pipping
#             (c) 2011        Brian Dolbec
#             Distributed under the terms of the GNU General Public License v2
#
# Author(s):
#             Gunnar Wrobel <wrobel@gentoo.org>
#             Sebastian Pipping <sebastian@pipping.org>
#             Brian Dolbec <brian.dolbec@gmail.com>
#

from __future__ import unicode_literals

__version__ = "$Id: version.py 309 2007-04-09 16:23:38Z wrobel $"


VERSION = '2.4.2'

if __name__ == '__main__':
    print(VERSION)