Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2 from dmarkey/fix-typo
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
dmarkey authored Dec 20, 2019
2 parents 277e298 + fdc33fe commit 67f36cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pgdatadiff/pgdatadiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def diff_sequence(self, seq_name):
return False, "sequence doesnt exist in second database."
if firstvalue < secondvalue:
return None, f"first sequence is less than" \
f" the first({firstvalue} vs {secondvalue})."
f" the second({firstvalue} vs {secondvalue})."
if firstvalue > secondvalue:
return False, f"first sequence is greater than" \
f" the second({firstvalue} vs {secondvalue})."
Expand Down

0 comments on commit 67f36cf

Please sign in to comment.