From 46d6c1badef27429b76819025388383ec6163d30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Sat, 22 Aug 2009 14:15:26 +0200 Subject: make sanitize_version a private function --- gbp/git.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gbp') diff --git a/gbp/git.py b/gbp/git.py index cf22718a..2fc29c9b 100644 --- a/gbp/git.py +++ b/gbp/git.py @@ -188,6 +188,7 @@ class GitRepository(object): name = os.getenv("GIT_AUTHOR_NAME", name) return (name, email) + def create_repo(path): """create a repository at path""" abspath = os.path.abspath(path) @@ -206,10 +207,10 @@ def create_repo(path): def build_tag(format, version): """Generate a tag from a given format and a version""" - return format % dict(version=sanitize_version(version)) + return format % dict(version=__sanitize_version(version)) -def sanitize_version(version): +def __sanitize_version(version): """sanitize a version so git accepts it as a tag""" if ':' in version: # strip of any epochs version = version.split(':', 1)[1] -- cgit v1.2.3