summaryrefslogtreecommitdiff
path: root/gbp/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'gbp/git.py')
-rw-r--r--gbp/git.py5
1 files changed, 3 insertions, 2 deletions
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]