From c52e3fd04a85ee41439b907f0146859a4cfa5879 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Wed, 30 Jan 2019 17:20:27 +1100 Subject: [PATCH] utils: Fix formatting. Signed-off-by: Tim 'mithro' Ansell --- utils/sort_db.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/sort_db.py b/utils/sort_db.py index f3ced8da..a1c3b120 100755 --- a/utils/sort_db.py +++ b/utils/sort_db.py @@ -311,7 +311,8 @@ def sort_db(filename): copy.sort(key=cmp.cmp_key) assert len(copy) == len(tosort) for i in range(0, len(copy)): - assert copy[i] == tosort[i], "\n%r\n != \n%r\n" % (copy[i], tosort[i]) + assert copy[i] == tosort[i], "\n%r\n != \n%r\n" % ( + copy[i], tosort[i]) with open(filename, 'w') as f: for _, l in tosort: