File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -94,8 +94,8 @@ def versionThree(self):
94
94
'In messages.dat database, adding tag field to'
95
95
' the inventory table.' )
96
96
item = '''ALTER TABLE inventory ADD tag blob DEFAULT '' '''
97
- parameters = ''
98
- self .cur .execute (item , parameters )
97
+ param = ''
98
+ self .cur .execute (item , param )
99
99
item = '''update settings set value=? WHERE key='version';'''
100
100
parameters = (4 ,)
101
101
self .cur .execute (item , parameters )
@@ -184,8 +184,8 @@ def versionEight(self):
184
184
'In messages.dat database, adding sighash field to'
185
185
' the inbox table.' )
186
186
item = '''ALTER TABLE inbox ADD sighash blob DEFAULT '' '''
187
- parameters = ''
188
- self .cur .execute (item , parameters )
187
+ param = ''
188
+ self .cur .execute (item , param )
189
189
item = '''update settings set value=? WHERE key='version';'''
190
190
parameters = (9 ,)
191
191
self .cur .execute (item , parameters )
You can’t perform that action at this time.
0 commit comments