1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-11-11 07:06:16 +01:00

build: Fix mytmpdir.__exit__() arguments

This commit is contained in:
Daniel Mach 2023-01-20 16:05:14 +01:00
parent 2ee52591a5
commit dd64cf1fae

View File

@ -1177,7 +1177,7 @@ def main(apiurl, opts, argv):
def __del__(self): def __del__(self):
self.cleanup() self.cleanup()
def __exit__(self): def __exit__(self, exc_type, exc_value, traceback):
self.cleanup() self.cleanup()
def __str__(self): def __str__(self):