Fix path in check_licenses utility

This commit is contained in:
Campbell Barton
2023-02-27 21:28:12 +11:00
parent 16aab1508d
commit 347cbbff2d

View File

@@ -46,7 +46,7 @@ mapping: Dict[str, List[str]] = {}
SOURCE_DIR = os.path.normpath(
os.path.abspath(
os.path.normpath(os.path.join(os.path.dirname(__file__), "..", "..", ".."))
os.path.normpath(os.path.join(os.path.dirname(__file__), "..", ".."))
)
)