Skip to content

Commit

Permalink
Fixed client variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
matteing committed May 13, 2017
1 parent 048d6fe commit 720e7fa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bin/gpymusic
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ from gpymusic import client
from gpymusic import common
from gpymusic import start


if __name__ == '__main__':
start.check_dirs()
common.w.replace_windows(*start.get_windows())
Expand All @@ -23,7 +22,7 @@ if __name__ == '__main__':

common.client = client.FullClient() if (
common.mc.is_subscribed
) else common.client.FreeClient()
) else client.FreeClient()

while True:
common.client.transition()
Expand Down

0 comments on commit 720e7fa

Please sign in to comment.