From fdc33feb3cf939136e8acfe518da65cb83ce33b3 Mon Sep 17 00:00:00 2001 From: David Markey Date: Fri, 20 Dec 2019 12:45:25 +0000 Subject: [PATCH] Update pgdatadiff.py --- pgdatadiff/pgdatadiff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgdatadiff/pgdatadiff.py b/pgdatadiff/pgdatadiff.py index aa1a3bc..1bb9be1 100644 --- a/pgdatadiff/pgdatadiff.py +++ b/pgdatadiff/pgdatadiff.py @@ -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})."