summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils/decorators.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/utils/decorators.py')
-rw-r--r--meta/lib/oeqa/utils/decorators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/decorators.py b/meta/lib/oeqa/utils/decorators.py
index 0b23565485..615fd956b5 100644
--- a/meta/lib/oeqa/utils/decorators.py
+++ b/meta/lib/oeqa/utils/decorators.py
@@ -190,7 +190,7 @@ def LogResults(original_class):
190 local_log.results("Testcase "+str(test_case)+": PASSED") 190 local_log.results("Testcase "+str(test_case)+": PASSED")
191 191
192 # Create symlink to the current log 192 # Create symlink to the current log
193 if os.path.exists(linkfile): 193 if os.path.lexists(linkfile):
194 os.remove(linkfile) 194 os.remove(linkfile)
195 os.symlink(logfile, linkfile) 195 os.symlink(logfile, linkfile)
196 196