diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/utils/decorators.py | 2 |
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 | ||