diff options
| author | Rusty Wagner <rusty@vector35.com> | 2020-06-22 14:57:47 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2020-06-22 14:58:21 -0400 |
| commit | 7ca3f1bd374a060ef0aaf7373f47ef1c2516e9dc (patch) | |
| tree | 50df26a2b0601f2d47b8206bde80155b000b429d | |
| parent | 9ae19630ecd30bdf676c5a0b99348ff9a80ddaab (diff) | |
Fix generator for realpath issue
| -rwxr-xr-x | suite/generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/suite/generator.py b/suite/generator.py index 3d15a813..ce7efada 100755 --- a/suite/generator.py +++ b/suite/generator.py @@ -25,7 +25,7 @@ import zipfile import difflib from collections import Counter -api_suite_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), {4}) +api_suite_path = os.path.realpath(os.path.join(os.path.dirname(os.path.realpath(__file__)), {4})) sys.path.append(api_suite_path) import testcommon import api_test |
