[entropy.server] catch OSError exception in ServerQAInterfacePlugin.__extract_edb_analyze_metadata

This commit is contained in:
Fabio Erculiani
2010-05-06 19:17:22 +02:00
parent 1b4a1bb580
commit 5748babbd6
+4 -1
View File
@@ -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,