Skip to content

Commit

Permalink
Move skip changes message to the outer loop
Browse files Browse the repository at this point in the history
  • Loading branch information
rsh7 committed Aug 5, 2018
1 parent b4c66a9 commit 61e72b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions musicbrainz_importer/apply_replication_changes.py
Expand Up @@ -266,8 +266,8 @@ def process(self):
if keys or values:
update_row(sql, params, connection, trans)
print ('Updated rows in ' + table + ' table')
else:
print ('Skipping changes, ' + table + ' table not found in the database')
else:
print ('Skipping changes, ' + table + ' table not found in the database')


def process_tar(fileobj, expected_schema_seq, replication_seq):
Expand Down

0 comments on commit 61e72b7

Please sign in to comment.