1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-28 10:46:15 +01:00

Remove superfluous StopIteration exception from the ar module

There is no need to raise a StopIteration exception.
This commit is contained in:
Marcus Huewe 2019-01-15 15:20:05 +01:00
parent 470b187374
commit 2e45edbe16

View File

@ -211,7 +211,6 @@ class Ar:
if h.file == '/':
continue
yield self._get_file(h)
raise StopIteration()
if __name__ == '__main__':