diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2012-10-08 15:37:58 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2012-10-08 15:37:58 -0700 |
commit | b2f4591004a0f16a4c348123e999b0912745833e (patch) | |
tree | e1ac4a6fc7ce757017841f2b58a255288051eed6 /bin | |
parent | Fix bug 372583. Don't add redundant trailing slashes on src uri's where trai... (diff) | |
download | layman-b2f4591004a0f16a4c348123e999b0912745833e.tar.gz layman-b2f4591004a0f16a4c348123e999b0912745833e.tar.bz2 layman-b2f4591004a0f16a4c348123e999b0912745833e.zip |
move the rename_db code to a standalone updater utility.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/layman-updater | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/bin/layman-updater b/bin/layman-updater new file mode 100755 index 0000000..ac9e841 --- /dev/null +++ b/bin/layman-updater @@ -0,0 +1,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() |