From a22568a28b734165f5a59e82397573ced0aad1fe Mon Sep 17 00:00:00 2001 From: 12nick12 Date: Wed, 11 Oct 2017 10:03:33 -0400 Subject: [PATCH] Update plexpy.test.py did some cleaning up --- plexpy.test.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plexpy.test.py b/plexpy.test.py index b4b177d..8e5f4cb 100644 --- a/plexpy.test.py +++ b/plexpy.test.py @@ -34,7 +34,6 @@ for i in range(0, stream_count): user = decoded['response']['data']['sessions'][i]['user'] bandwidth = decoded['response']['data']['sessions'][i]['bandwidth'] bandwidthTotal = float(bandwidthTotal) + float(bandwidth) / 1024 - print(transcode) - print(user) + print("Type of Stream: %s" % transcode) + print("User: %s:" % user) -print("Total Bandwidth: %.2f" % bandwidthTotal)