fix missing argument in Show.newer and Show.replace

This commit is contained in:
2022-09-20 11:49:05 +02:00
parent 49a829f689
commit ac686ac066

View File

@ -280,10 +280,10 @@ class Show:
print('cat %s' % join(dirpath, f))
def newer(self, files):
self.show('get from', files)
self.show('get from', self.dirpath, files)
def older(self, files):
self.show('replace in', files)
self.show('replace in', self.dirpath, files)
def missing(self, files):
self.show('install in', self.dirpath, files)