From 5888ea0c57951209527f4de4769a991101a83990 Mon Sep 17 00:00:00 2001 From: rolux Date: Mon, 10 Dec 2012 18:46:10 +0100 Subject: [PATCH] fix update.py output (fixes #1175) --- update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update.py b/update.py index e53b7776..5e813900 100755 --- a/update.py +++ b/update.py @@ -33,7 +33,7 @@ if __name__ == "__main__": else: print "You are upgrading from an older version of pan.do/ra." print "Please use ./manage.py sqldiff -a to check for updates" - print "and apply required changes. You might have to set defaults too" + print "and apply required changes. You might have to set defaults too." print "Once done run ./manage.py migrate --all --fake" print "Check http://wiki.0x2620.org/wiki/pandora/DatabaseUpdate for more information" else: @@ -71,4 +71,4 @@ if __name__ == "__main__": run('./manage.py', 'compile_pyc') diff = get('./manage.py', 'sqldiff', '-a').strip() if diff != '-- No differences': - print 'Database was changes, please make a backup and run run ./update.py database' + print 'Database has changed, please make a backup and run ./update.py database'