diff --git a/cnchi/info.py b/cnchi/info.py index ea34c16c7..08676f2f2 100755 --- a/cnchi/info.py +++ b/cnchi/info.py @@ -29,7 +29,7 @@ """ Set some Cnchi global constants """ -CNCHI_VERSION = "0.14.224" +CNCHI_VERSION = "0.14.226" CNCHI_WEBSITE = "http://www.antergos.com" CNCHI_RELEASE_STAGE = "production" diff --git a/cnchi/logging_utils.py b/cnchi/logging_utils.py index 7e26339b6..41bc2f1d4 100644 --- a/cnchi/logging_utils.py +++ b/cnchi/logging_utils.py @@ -90,11 +90,12 @@ def get_and_save_install_id(self, is_location_screen=False): try: r = requests.get(url, headers=headers) + r.raise_for_status() info = json.loads(r.json()) except Exception as err: logger = logging.getLogger() msg = "Unable to get an Id for this installation. Error: {0}".format(err.args) - logger.error(msg) + logger.debug(msg) try: self.ip = info['ip'] diff --git a/update.info b/update.info index ab86147be..d68127e54 100644 --- a/update.info +++ b/update.info @@ -1,2 +1,2 @@ -{"version":"0.14.224","files":[ +{"version":"0.14.226","files":[ ]}