Skip to content
Snippets Groups Projects
Commit 3e2c0e71 authored by David Huss's avatar David Huss :speech_balloon:
Browse files

Fix xml import path thing

parent 62123734
Branches
No related tags found
No related merge requests found
......@@ -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()
......
[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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment