Skip to content

Commit

Permalink
Merge pull request #4 from Glandos/patch-2
Browse files Browse the repository at this point in the history
Fix cursor_b opening
  • Loading branch information
kd8bny authored Nov 22, 2019
2 parents 4c0ff07 + a29c9b2 commit c557108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlMerge.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def loadTables(self, file_a, file_b):

def merge(self, table_name):
cursor_a = self.db_a.cursor()
cursor_a = self.db_b.cursor()
cursor_b = self.db_b.cursor()

new_table_name = table_name + "_new"

Expand Down

0 comments on commit c557108

Please sign in to comment.