diff --git a/ebpfcat/ebpfcat.py b/ebpfcat/ebpfcat.py index 4ca50ccb5a7cc79a37f779dee888a5fadbba9240..ccb16b8a91f25b5e61a6c94f5f668e2629d18a93 100644 --- a/ebpfcat/ebpfcat.py +++ b/ebpfcat/ebpfcat.py @@ -515,9 +515,10 @@ class ParallelEtherCat(FastEtherCat): try: os.rmdir(lockdir) except OSError: - return - await self.ebpf.detach(self.addr[0]) - os.remove(programs) + pass + else: + await self.ebpf.detach(self.addr[0]) + os.remove(programs) class SterilePacket(Packet):