From 10579c5de043bcccd32e11a39cded555e2eb218c Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 1 Oct 2004 04:19:22 +0000 Subject: [PATCH] Updated. --- sandbox/release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandbox/release.py b/sandbox/release.py index e9a242f74..cd773a8f3 100644 --- a/sandbox/release.py +++ b/sandbox/release.py @@ -48,7 +48,7 @@ if __name__ == '__main__': versionFiles = ('src/conf.py', 'scripts/supybot', 'setup.py') for fn in versionFiles: - sh = 'perl -pi -e "s/^version\s*=.*/version = \'%s\'" %s' % (v, fn) + sh = 'perl -pi -e "s/^version\s*=.*/version = \'%s\'/" %s' % (v, fn) system(sh, 'Error changing version in %s' % fn) system('cvs commit -m "Updated to %s." %s' % (v, ' '.join(versionFiles)))