summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/utils/ftools.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/ftools.py b/meta/lib/oeqa/utils/ftools.py
index 64ebe3d217..1ec8a0948f 100644
--- a/meta/lib/oeqa/utils/ftools.py
+++ b/meta/lib/oeqa/utils/ftools.py
@@ -1,5 +1,6 @@
1import os 1import os
2import re 2import re
3import errno
3 4
4def write_file(path, data): 5def write_file(path, data):
5 wdata = data.rstrip() + "\n" 6 wdata = data.rstrip() + "\n"
@@ -18,7 +19,15 @@ def read_file(path):
18 return data 19 return data
19 20
20def remove_from_file(path, data): 21def remove_from_file(path, data):
21 lines = read_file(path).splitlines() 22 try:
23 rdata = read_file(path)
24 except IOError as e:
25 # if file does not exit, just quit, otherwise raise an exception
26 if e.errno == errno.ENOENT:
27 return
28 else:
29 raise
30 lines = rdata.splitlines()
22 rmdata = data.strip().splitlines() 31 rmdata = data.strip().splitlines()
23 for l in rmdata: 32 for l in rmdata:
24 for c in range(0, lines.count(l)): 33 for c in range(0, lines.count(l)):