diff --git a/libraries/entropy/server/interfaces/main.py b/libraries/entropy/server/interfaces/main.py index 5980e4d98..00bf12cfc 100644 --- a/libraries/entropy/server/interfaces/main.py +++ b/libraries/entropy/server/interfaces/main.py @@ -842,7 +842,10 @@ class ServerQAInterfacePlugin(QAInterfacePlugin): time.sleep(10) finally: dbc.closeDB() - os.remove(tmp_f) + try: + os.remove(tmp_f) + except OSError: + pass def get_tests(self): return [self.__check_package_using_spm,