diff --git a/install.py b/install.py index 4f5dda4..250f7f5 100755 --- a/install.py +++ b/install.py @@ -267,7 +267,7 @@ class Show: print('%s %s:\n %s' % (title, self.syspath, ' '.join(files))) else: for f in files: - if f.endswith(MORE_INFO): + if f.endswith(more_info): print('diff %s %s' % (join(self.dirpath, f), join(self.syspath, f))) def show(self, title, dirpath, files): @@ -275,7 +275,7 @@ class Show: print('%s %s:\n %s' % (title, self.syspath, ' '.join(files))) else: for f in files: - if f.endswith(MORE_INFO): + if f.endswith(more_info): print('cat %s' % join(dirpath, f)) def newer(self, files):