Skip to content
This repository has been archived by the owner on Apr 8, 2022. It is now read-only.

Commit

Permalink
shorten date display
Browse files Browse the repository at this point in the history
  • Loading branch information
hippojay committed Apr 26, 2015
1 parent 8447e0d commit 04c0d14
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion resources/lib/plex.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,8 @@ def get_myplex_information(self):
subscription = xml.find('subscription')
result['plexpass'] = subscription.get('plan')

result['membersince'] = xml.find('joined-at').text
date= xml.find('joined-at').text
result['membersince'] = date.split(' ')[0]

printDebug("Gathered information: %s" % result)

Expand Down

0 comments on commit 04c0d14

Please sign in to comment.