From 9dbc5766c815836cd09471a66ed2530d0d5dcde6 Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Mon, 12 Sep 2022 01:24:40 +0100 Subject: [PATCH] return response field for stop_record patch bump --- obsws_python/reqs.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/obsws_python/reqs.py b/obsws_python/reqs.py index 4e95891..a523996 100644 --- a/obsws_python/reqs.py +++ b/obsws_python/reqs.py @@ -1659,7 +1659,7 @@ class ReqClient: """ - self.send("StopRecord") + return self.send("StopRecord") def toggle_record_pause(self): """ diff --git a/setup.py b/setup.py index 56dd3b0..f33d946 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages, setup HERE = pathlib.Path(__file__).parent -VERSION = "1.0.4" +VERSION = "1.0.5" PACKAGE_NAME = "obsws-python" AUTHOR = "Adem Atikturk" AUTHOR_EMAIL = "aatikturk@gmail.com"