From 24c3d90d0b65e53be88442a0ed1c32abb4b13333 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Thu, 27 Jan 2011 21:14:54 +0000 Subject: [PATCH] Updated hint to say "git tag" instead of the old "git-tag" --- scm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm.py b/scm.py index 50b447b..1c70d77 100644 --- a/scm.py +++ b/scm.py @@ -95,7 +95,7 @@ class GIT(SCM): stdout, unused = child.communicate() if tag in stdout.split('\n'): raise SafeException(("Release %s is already tagged! If you want to replace it, do\n" + - "git-tag -d %s") % (version, tag)) + "git tag -d %s") % (version, tag)) def export(self, prefix, archive_file, revision): child = self._run(['archive', '--format=tar', '--prefix=' + prefix + '/', revision], stdout = subprocess.PIPE) -- 2.11.4.GIT