diff --git a/bbbmon/meetings.py b/bbbmon/meetings.py index b5139e9a3d521e8ce95333cc648c3e0bbba6a095..0865142d7dad69b158932e75f3aa3904cbbe34f1 100644 --- a/bbbmon/meetings.py +++ b/bbbmon/meetings.py @@ -52,8 +52,8 @@ def request_meetings(secret: Secret, bbb_url: Url, user_config_path: str) -> Xml try: root = ElementTree.XML(r.text) - except xml.etree.ElementTree.ParseError as e: - click.echo("{} The XML returned from {} returned an xml.etree.ElementTree.ParseError. The response text from the Server was:\n{}".format(click.style('Error:', fg='red', bold=True), url, r.text)) + except ElementTree.ParseError as e: + click.echo("{} The XML returned from {} couldn't be properly parsed. The response text from the Server was:\n{}".format(click.style('Error:', fg='red', bold=True), url, r.text)) print("Exiting...") exit() diff --git a/pyproject.toml b/pyproject.toml index c3c5fb089888c30a637e5962503f80e82b8d2f5f..ff9c4a53b41360354bcf4bfede28841bc4ec1338 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,13 @@ [tool.poetry] name = "bbbmon" -version = "0.1.24" +version = "0.1.25" description = "A small CLI utility to monitor bbb usage" authors = ["David Huss <david.huss@hfbk-hamburg.de>"] maintainers = ["David Huss <david.huss@hfbk-hamburg.de>"] license = "GPL-3.0+" readme = "README.md" classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: System Administrators", "License :: Free for non-commercial use",