Skip to content

Commit 1a15c61

Browse files
committed
Update repo URLs to org
1 parent eea0ec8 commit 1a15c61

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

README.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
Python-PlexAPI
22
==============
3-
.. image:: https://github.com/pkkid/python-plexapi/workflows/CI/badge.svg
4-
:target: https://github.com/pkkid/python-plexapi/actions?query=workflow%3ACI
3+
.. image:: https://github.com/pushingkarmaorg/python-plexapi/workflows/CI/badge.svg
4+
:target: https://github.com/pushingkarmaorg/python-plexapi/actions?query=workflow%3ACI
55
.. image:: https://readthedocs.org/projects/python-plexapi/badge/?version=latest
66
:target: http://python-plexapi.readthedocs.io/en/latest/?badge=latest
7-
.. image:: https://codecov.io/gh/pkkid/python-plexapi/branch/master/graph/badge.svg?token=fOECznuMtw
8-
:target: https://codecov.io/gh/pkkid/python-plexapi
9-
.. image:: https://img.shields.io/github/tag/pkkid/python-plexapi.svg?label=github+release
10-
:target: https://github.com/pkkid/python-plexapi/releases
7+
.. image:: https://codecov.io/gh/pushingkarmaorg/python-plexapi/branch/master/graph/badge.svg?token=fOECznuMtw
8+
:target: https://codecov.io/gh/pushingkarmaorg/python-plexapi
9+
.. image:: https://img.shields.io/github/tag/pushingkarmaorg/python-plexapi.svg?label=github+release
10+
:target: https://github.com/pushingkarmaorg/python-plexapi/releases
1111
.. image:: https://badge.fury.io/py/PlexAPI.svg
1212
:target: https://badge.fury.io/py/PlexAPI
13-
.. image:: https://img.shields.io/github/last-commit/pkkid/python-plexapi.svg
14-
:target: https://img.shields.io/github/last-commit/pkkid/python-plexapi.svg
13+
.. image:: https://img.shields.io/github/last-commit/pushingkarmaorg/python-plexapi.svg
14+
:target: https://img.shields.io/github/last-commit/pushingkarmaorg/python-plexapi.svg
1515

1616

1717
Overview

plexapi/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def sendCommand(self, command, proxy=None, **params):
220220
proxy = self._proxyThroughServer if proxy is None else proxy
221221
query = self._server.query if proxy else self.query
222222

223-
# Workaround for ptp. See https://github.com/pkkid/python-plexapi/issues/244
223+
# Workaround for ptp. See https://github.com/pushingkarmaorg/python-plexapi/issues/244
224224
t = time.time()
225225
if command == 'timeline/poll':
226226
self._last_call = t

plexapi/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def _myPlexClientPorts(self):
329329
""" Sometimes the PlexServer does not properly advertise port numbers required
330330
to connect. This attempts to look up device port number from plex.tv.
331331
See issue #126: Make PlexServer.clients() more user friendly.
332-
https://github.com/pkkid/python-plexapi/issues/126
332+
https://github.com/pushingkarmaorg/python-plexapi/issues/126
333333
"""
334334
try:
335335
ports = {}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dynamic = ["version"]
1919
alert = ["websocket-client>=1.3.3"]
2020

2121
[project.urls]
22-
Homepage = "https://github.com/pkkid/python-plexapi"
22+
Homepage = "https://github.com/pushingkarmaorg/python-plexapi"
2323
Documentation = "https://python-plexapi.readthedocs.io"
2424

2525
[tool.setuptools.dynamic]

tests/test_server.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,11 @@ def test_server_transcodeImage(tmpdir, plex, movie):
7171
opacity_background_url = plex.transcodeImage(original_url, height, width, opacity=0, background=background, blur=100)
7272
blend_url = plex.transcodeImage(original_url, height, width, blendColor=blend, blur=1000)
7373
online_no_upscale_url = plex.transcodeImage(
74-
"https://raw.githubusercontent.com/pkkid/python-plexapi/master/tests/data/cute_cat.jpg", 1000, 1000, upscale=False)
74+
"https://raw.githubusercontent.com/pushingkarmaorg/python-plexapi/master/tests/data/cute_cat.jpg",
75+
1000,
76+
1000,
77+
upscale=False
78+
)
7579

7680
original_img = download(
7781
original_url, plex._token, savepath=str(tmpdir), filename="original_img",

0 commit comments

Comments
 (0)