From 76c0b0d7df4598e2f290c8a3970a828557401f52 Mon Sep 17 00:00:00 2001 From: Mike Date: Thu, 25 Jul 2019 15:50:22 -0700 Subject: [PATCH] rename a method --- backup-diff.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backup-diff.py b/backup-diff.py index e98e84d..b05b5f4 100644 --- a/backup-diff.py +++ b/backup-diff.py @@ -37,7 +37,7 @@ class BackupDiff: self.consume_arguments() self.calculate_comparison_items() - self.do_comparison() + self.calculate_difference_entries() self.print_report() @staticmethod @@ -134,7 +134,7 @@ class BackupDiff: return paths - def do_comparison(self): + def calculate_difference_entries(self): entries = [] @@ -310,7 +310,7 @@ class BackupDiff: print("") if hooded: - print( "*" * len(title) ) + print("*" * len(title)) print(title) def print_report(self):