From 8fbec2c7e023edde80be382c4c6f716dc8049420 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 21 Oct 2010 08:00:24 -0400 Subject: Rename tag -> _tag in release.py to avoid collision with tag() function. --- release.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'release.py') diff --git a/release.py b/release.py index 341019c..879aca4 100755 --- a/release.py +++ b/release.py @@ -154,16 +154,16 @@ commit if it fails. sys.exit(0) assert len(args) == 1, '%d (!= 1) arguments: %s' % (len(args), args) - tag = args[0] - validate_tag(tag) + _tag = args[0] + validate_tag(_tag) if pending_changes() == True: print "Handle pending changes before releasing." sys.exit(1) - set_release_version(tag) + set_release_version(_tag) print "Update copyright information..." update_authors() update_files() - commit("Bumped to version %s" % tag) - tag(tag) - create_tarball(tag) + commit("Bumped to version %s" % _tag) + tag(_tag) + create_tarball(_tag) -- cgit