From f8824458b38dc620eb1a3b1ef962ff4fef220aa3 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Sun, 17 Jun 2012 10:34:23 -0400 Subject: [PATCH] release: Fix repository location Signed-off-by: James McCoy --- sandbox/release.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sandbox/release.py b/sandbox/release.py index 92fc70ec7..bc90db6e5 100644 --- a/sandbox/release.py +++ b/sandbox/release.py @@ -80,8 +80,8 @@ if __name__ == '__main__': ' Change to an appropriate directory or remove the supybot ' 'directory to continue.') print 'Checking out fresh tree from git.' - system(['git', 'clone', '-b', branch, - 'git+ssh://%s@supybot.git.sourceforge.net/gitroot/supybot' % u]) + repo = 'git+ssh://%s@supybot.git.sourceforge.net/gitroot/supybot/supybot' % u + system(['git', 'clone', '-b', branch, repo]) os.chdir('supybot') print 'Checking RELNOTES version line.'