Commit 727b3c9e authored by Chris Lamb's avatar Chris Lamb 👀
Browse files

Fix an issue with detecting ordering differences. (Closes:...

Fix an issue with detecting ordering differences. (Closes: #316, Debian:#1022145)
parent fe8326a8
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -423,7 +423,7 @@ class Difference:
            return False

        if added_lines == removed_lines:
            return False
            return True

        return sorted(added_lines) == sorted(removed_lines)