Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-11-05 15:56:16 +0000
committerGitHub <noreply@github.com>2021-11-05 15:56:16 +0000
commit31a7a85e04e05f46208b026881ced5d9db190fe5 (patch)
tree435e7bd6f6796a4404e67d9f7b1a210bdeb22b4d
parent0071a069080732047e11309134869f3ab40c642c (diff)
parentf234b631691e7dcd587243e09c787139bc56fe13 (diff)
Merge pull request #688 from archlinux/torxed-fix-93
Fixed quotation marks
-rw-r--r--archinstall/lib/disk/user_guides.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/archinstall/lib/disk/user_guides.py b/archinstall/lib/disk/user_guides.py
index e235dfc9..5354fe2a 100644
--- a/archinstall/lib/disk/user_guides.py
+++ b/archinstall/lib/disk/user_guides.py
@@ -49,10 +49,10 @@ def suggest_single_disk_layout(block_device, default_filesystem=None):
# https://github.com/classy-giraffe/easy-arch/blob/main/easy-arch.sh
layout[block_device.path]['partitions'][1]['btrfs'] = {
"subvolumes" : {
- '@home' : '/home',
- '@log' : '/var/log',
- '@pkgs' : '/var/cache/pacman/pkg',
- '@.snapshots' : '/.snapshots'
+ "@home" : "/home",
+ "@log" : "/var/log",
+ "@pkgs" : "/var/cache/pacman/pkg",
+ "@.snapshots" : "/.snapshots"
}
}
else: