mirror of
https://github.com/yokoffing/Betterfox.git
synced 2026-06-12 07:30:47 +05:30
fix install.py (quotes in f-strings) (#405)
This commit is contained in:
+2
-2
@@ -73,10 +73,10 @@ def _get_default_firefox_version_and_root():
|
|||||||
print("Searching for Firefox installation...")
|
print("Searching for Firefox installation...")
|
||||||
for installation in INSTALLATIONS_TO_CHECK:
|
for installation in INSTALLATIONS_TO_CHECK:
|
||||||
try:
|
try:
|
||||||
print(f" '{" ".join(installation["command"])}': ", end="")
|
print(f" '{' '.join(installation['command'])}': ", end="")
|
||||||
version = _get_firefox_version(installation["command"])
|
version = _get_firefox_version(installation["command"])
|
||||||
print("YES")
|
print("YES")
|
||||||
print(f"Root: {installation["root"]}")
|
print(f"Root: {installation['root']}")
|
||||||
return version, installation["root"]
|
return version, installation["root"]
|
||||||
except Exception:
|
except Exception:
|
||||||
print("no")
|
print("no")
|
||||||
|
|||||||
Reference in New Issue
Block a user