summaryrefslogtreecommitdiffstats
path: root/bin/layman-updater
blob: ac9e841b4a28950bbccf4e6c285a4cc6b8394dc4 (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
#!/usr/bin/env python
# -*- coding: utf-8 -*-

################################################################################
# LAYMAN - A UTILITY TO UPDATE LAYMAN DB's
################################################################################
# Distributed under the terms of the GNU General Public License v2
#
# Copyright:
#             (c) 2011 Brian Dolbec
#             Distributed under the terms of the GNU General Public License v2
#
# Author(s):
#             Brian Dolbec <brian.dolbec@gmail.com>
#

__version__ = "0.1"


from layman.updater import Main


main = Main()
main()