Skip to content

Commit

Permalink
Bump to version 0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
matlink committed Jun 21, 2017
1 parent 15dc7d7 commit 00a34e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions gplaycli/gplaycli.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
class ERRORS(IntEnum):
OK = 0
TOKEN_DISPENSER_AUTH_ERROR = 5
TOKEN_DISPENSER_SERVER_ERROR = 6
KEYRING_NOT_INSTALLED = 10
CANNOT_LOGIN_GPLAY = 15

Expand Down Expand Up @@ -110,6 +111,9 @@ def retrieve_token(self, token_url):
if token == 'Auth error':
print 'Token dispenser auth error, probably too many connections'
sys.exit(ERRORS.TOKEN_DISPENSER_AUTH_ERROR)
elif token == "Server error":
print 'Token dispenser server error'
sys.exit(ERRORS.TOKEN_DISPENSER_SERVER_ERROR)
return token

def set_download_folder(self, folder):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os

setup(name='GPlayCli',
version='0.2.5',
version='0.2.6',
description='GPlayCli, a Google play downloader command line interface',
author="Matlink",
author_email="[email protected]",
Expand Down
Binary file modified tests/com.duckduckgo.mobile.android_3.0.17.apk
Binary file not shown.

0 comments on commit 00a34e6

Please sign in to comment.