From 68f0d30a546b14f9e6337a464c73ac2346ecdcf1 Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Mon, 7 Aug 2023 08:46:35 +0200 Subject: [PATCH] fix MORE_INFO -> more_info --- install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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):