chroot: remove initialize=False arg from Chroot()
This commit is contained in:
parent
3c315d7899
commit
9fbb2dec46
2 changed files with 1 additions and 5 deletions
|
@ -49,7 +49,7 @@ class BaseChroot(Chroot):
|
|||
|
||||
def get_base_chroot(arch: Arch) -> BaseChroot:
|
||||
name = base_chroot_name(arch)
|
||||
args = dict(arch=arch, copy_base=False, initialize=False)
|
||||
args = dict(arch=arch, copy_base=False)
|
||||
chroot = get_chroot(name, initialize=False, chroot_class=BaseChroot, chroot_args=args)
|
||||
assert isinstance(chroot, BaseChroot)
|
||||
return chroot
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue