From f998d934d9b20fd9676e06c4379a86881f04b29a Mon Sep 17 00:00:00 2001 From: Maran Date: Thu, 29 Nov 2012 12:35:48 +0100 Subject: [PATCH] Rewrote the sqlite check to accept any number of version info --- bitmessagemain.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bitmessagemain.py b/bitmessagemain.py index 1bf7a814..9cb75100 100644 --- a/bitmessagemain.py +++ b/bitmessagemain.py @@ -3406,8 +3406,9 @@ averageProofOfWorkNonceTrialsPerByte = 320 #The amount of work that should be pe payloadLengthExtraBytes = 14000 #To make sending short messages a little more difficult, this value is added to the payload length for use in calculating the proof of work target. if __name__ == "__main__": - major, minor, revision = sqlite3.sqlite_version_info - if major < 3: + sqlite_version = sqlite3.sqlite_version_info + # Check the Major version, the first element in the array + if sqlite_version[0] < 3: print 'This program requires sqlite version 3 or higher because 2 and lower cannot store NULL values. I see version:', sqlite3.sqlite_version_info sys.exit()