Unverified Commit d3e923c9 authored by kiui's avatar kiui Committed by GitHub
Browse files

Merge pull request #6 from uyzhang/main

fixed the bug: inconsistent use of tabs and spaces in indentation
parents 09648cf6 e7ec9667
......@@ -36,7 +36,7 @@ def find_eigen(min_ver=(3, 3, 0)):
major_ver = int(line[len(MAJOR_VER_STR):])
elif line.startswith(MINOR_VER_STR):
minor_ver = int(line[len(MINOR_VER_STR):])
if world_ver is None or major_ver is None or minor_ver is None:
if world_ver is None or major_ver is None or minor_ver is None:
print('Failed to parse macros file', macros_path)
else:
ver = (world_ver, major_ver, minor_ver)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment