From daf690799f681217c987fe311bf2bb1fbaf2d6d0 Mon Sep 17 00:00:00 2001 From: Gabriel Huber Date: Sat, 8 Feb 2020 04:48:38 +0100 Subject: [PATCH] Workaround for parsing GoldSource mod responses without a mod section --- a2s/info.py | 3 ++- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/a2s/info.py b/a2s/info.py index 5d061d6..3811425 100644 --- a/a2s/info.py +++ b/a2s/info.py @@ -229,7 +229,8 @@ def parse_goldsrc(reader): resp.password_protected = reader.read_bool() resp.is_mod = reader.read_bool() - if resp.is_mod: + # Some games don't send this section + if resp.is_mod and len(reader.peek()) > 2: resp.mod_website = reader.read_cstring() resp.mod_download = reader.read_cstring() reader.read(1) # Skip a NULL byte diff --git a/setup.py b/setup.py index 2745632..0c53773 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open("README.md", "r") as readme: setuptools.setup( name="python-a2s", - version="1.1.1", + version="1.1.2", author="Gabriel Huber", author_email="mail@gabrielhuber.at", description="Query Source and GoldSource servers for name, map, players and more.", @@ -23,5 +23,5 @@ setuptools.setup( "Operating System :: OS Independent", "Topic :: Games/Entertainment" ], - python_requires=">=3.5" + python_requires=">=3.6" )