mirror of
https://github.com/morgan9e/helium
synced 2026-04-15 00:44:06 +09:00
fix: correct f-string quote usage in helium_version.py (#18)
This commit is contained in:
committed by
GitHub
parent
7413c75494
commit
70eb9a635d
@@ -43,8 +43,8 @@ def main():
|
||||
|
||||
version_parts = get_version_parts(tree, platform_tree)
|
||||
if should_print:
|
||||
print(f"{version_parts["HELIUM_MAJOR"]}.{version_parts["HELIUM_MINOR"]}." + \
|
||||
f"{version_parts["HELIUM_PATCH"]}.{version_parts["HELIUM_PLATFORM"]}")
|
||||
print(f"{version_parts['HELIUM_MAJOR']}.{version_parts['HELIUM_MINOR']}." + \
|
||||
f"{version_parts['HELIUM_PATCH']}.{version_parts['HELIUM_PLATFORM']}")
|
||||
else:
|
||||
chrome_version_path = chromium_tree / "chrome/VERSION"
|
||||
check_existing_version(chrome_version_path)
|
||||
|
||||
Reference in New Issue
Block a user