Skip to content

Commit 6735ecc

Browse files
committed
more more
1 parent 7c2395a commit 6735ecc

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

.coveragerc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ exclude_lines =
55
raise Unsupported
66
raise Exception
77
except ImportError
8+
except BadRequest
89
def __repr__
910
def __bool__
1011
def __iter__

plexapi/alert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def _onMessage(self, ws, message):
4747
""" Called when websocket message is recieved. """
4848
try:
4949
data = json.loads(message)['NotificationContainer']
50-
log.debug('Alert: %s', data)
50+
log.debug('Alert: %s %s %s', *data)
5151
if self._callback:
5252
self._callback(data)
5353
except Exception as err:

tests/test_server.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -155,12 +155,6 @@ def test_server_createPlayQueue(plex, movie):
155155
assert playqueue.playQueueShuffled is True
156156

157157

158-
def _test_server_createPlaylist():
159-
# TODO: Implement _test_server_createPlaylist()
160-
# see test_playlists.py
161-
pass
162-
163-
164158
def test_server_client_not_found(plex):
165159
with pytest.raises(NotFound):
166160
plex.client('<This-client-should-not-be-found>')

0 commit comments

Comments
 (0)