We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48c6e40 commit 2675715Copy full SHA for 2675715
zulip/zulip/__init__.py
@@ -548,7 +548,8 @@ def get_user_agent(self) -> str:
548
pass
549
550
if vendor == "Linux":
551
- vendor, vendor_version, dummy = distro.linux_distribution()
+ vendor = distro.name()
552
+ vendor_version = distro.version()
553
elif vendor == "Windows":
554
vendor_version = platform.win32_ver()[1]
555
elif vendor == "Darwin":
0 commit comments