Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/hardware.py
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 14:10:44 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 14:29:24 -0400
commita0cbb31d3ef12d5cde2253b4a31757c0409aee40 (patch)
treee907a97d84be56dc9e363b5fa559cc7bcbbebe88 /archinstall/lib/hardware.py
parent85fa833a8afd3bf180720461b7ffd3477f81c049 (diff)
f-string fixes
Diffstat (limited to 'archinstall/lib/hardware.py')
-rw-r--r--archinstall/lib/hardware.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/hardware.py b/archinstall/lib/hardware.py
index 3203daee..d1723cde 100644
--- a/archinstall/lib/hardware.py
+++ b/archinstall/lib/hardware.py
@@ -78,7 +78,7 @@ def hasUEFI() -> bool:
def graphicsDevices() -> dict:
cards = {}
- for line in sys_command(f"lspci"):
+ for line in sys_command("lspci"):
if b' VGA ' in line:
_, identifier = line.split(b': ', 1)
cards[identifier.strip().lower().decode('UTF-8')] = line