summarylogtreecommitdiffstats
path: root/is_alive.patch
diff options
context:
space:
mode:
authorMichael Riegert2020-12-07 14:12:45 -0500
committerMichael Riegert2020-12-07 14:12:45 -0500
commitc167052a4d8ea0eee827901bece9330e7d8d4e2a (patch)
tree4ab024f8173702facaec8befc9f2daa375edd556 /is_alive.patch
parent640fe39986b3421c73ae504d01ed7a392723b095 (diff)
downloadaur-python-pychromecast6.tar.gz
Add patch for Python 3.9 support
Diffstat (limited to 'is_alive.patch')
-rw-r--r--is_alive.patch10
1 files changed, 10 insertions, 0 deletions
diff --git a/is_alive.patch b/is_alive.patch
new file mode 100644
index 000000000000..51ca8b5de56b
--- /dev/null
+++ b/is_alive.patch
@@ -0,0 +1,10 @@
+--- pychromecast/__init__.py 2020-06-28 00:58:09.000000000 -0700
++++ - 2020-12-07 09:21:51.082051341 -0800
+@@ -443,7 +443,7 @@
+ operation in seconds (or fractions thereof). Or None
+ to block forever.
+ """
+- if not self.socket_client.isAlive():
++ if not self.socket_client.is_alive():
+ self.socket_client.start()
+ self.status_event.wait(timeout=timeout)