From 89962a5dd4646c4d8d79d80f9f3459933c4a0886 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Tue, 22 Oct 2013 20:00:51 +0000 Subject: [PATCH] fix postupdate --- update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.py b/update.py index 4b175592b..15d48cc46 100755 --- a/update.py +++ b/update.py @@ -146,7 +146,7 @@ if __name__ == "__main__": diff = get('./manage.py', 'sqldiff', '-a').strip() if diff != '-- No differences': print 'Database has changed, please make a backup and run ./update.py db' - elif current != new: + if current != new: if pandora_old_revno != pandora_new_revno: os.chdir(base) run('./update.py', 'postupdate', pandora_old_revno, pandora_new_revno)