From 849c7e4ad3b7fba05297a8da27bada427b3e4656 Mon Sep 17 00:00:00 2001 From: Hugo Posnic Date: Sat, 17 Dec 2016 11:57:13 +0100 Subject: [PATCH] Change name of get_lsb_information() --- src/manjaro-hello.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/manjaro-hello.py b/src/manjaro-hello.py index f793523..d18291c 100644 --- a/src/manjaro-hello.py +++ b/src/manjaro-hello.py @@ -218,7 +218,7 @@ class ManjaroHello(): Gtk.main_quit(*args) def get_infos(): - lsb = get_lsb_information() + lsb = get_lsb_infos() infos = {} infos["codename"] = lsb.get("CODENAME", None) infos["release"] = lsb.get("RELEASE", None) @@ -226,7 +226,7 @@ def get_infos(): infos["live"] = os.path.exists("/bootmnt/manjaro") or os.path.exists("/run/miso/bootmnt/manjaro") return infos -def get_lsb_information(): +def get_lsb_infos(): lsb = {} try: with open("/etc/lsb-release") as lsb_file: