From 434ddfde8f889b6e2a8ca9505c06197075cc4cb3 Mon Sep 17 00:00:00 2001 From: InsanePrawn Date: Sun, 20 Feb 2022 19:23:28 +0100 Subject: [PATCH] small cleanups --- constants.py | 2 +- distro/pkgbuild.py | 2 +- fastboot.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/constants.py b/constants.py index 69613c2..cdb4758 100644 --- a/constants.py +++ b/constants.py @@ -57,7 +57,7 @@ FLAVOURS: dict[str, Flavour] = { 'phosh': { 'packages': [ 'phosh', - #'squeekboard', #temporarily disabled + # 'squeekboard', #temporarily disabled 'gnome-control-center', 'gnome-software', 'gnome-software-packagekit-plugin', diff --git a/distro/pkgbuild.py b/distro/pkgbuild.py index 509d53b..61daa43 100644 --- a/distro/pkgbuild.py +++ b/distro/pkgbuild.py @@ -33,7 +33,7 @@ class Pkgbuild(PackageInfo): self.replaces = deepcopy(replaces) def __repr__(self): - return f'Package({self.name},{repr(self.path)},{self.version},{self.mode})' + return f'Pkgbuild({self.name},{repr(self.path)},{self.version},{self.mode})' def names(self): return list(set([self.name] + self.provides + self.replaces)) diff --git a/fastboot.py b/fastboot.py index 1c482c7..97387c1 100644 --- a/fastboot.py +++ b/fastboot.py @@ -3,7 +3,7 @@ import subprocess def fastboot_erase_dtbo(): - logging.info(f"Fastboot: Erasing DTBO") + logging.info("Fastboot: Erasing DTBO") subprocess.run( [ 'fastboot',