Skip to content

Commit

Permalink
Size of application is now 'N/A' when invalid value is returned (Fix #…
Browse files Browse the repository at this point in the history
  • Loading branch information
matlink committed Mar 30, 2018
2 parents 4e77958 + fe5b995 commit c68eb6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gplaycli/gplaycli.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def search(self, search_string, nb_results, free_only=True, include_headers=True
continue
detail = [result['title'],
result['author'],
util.sizeof_fmt(result['installationSize']),
util.sizeof_fmt(result['installationSize']) if result['installationSize'] > 0 else 'N/A',
result['numDownloads'],
result['uploadDate'],
result['docId'],
Expand Down

0 comments on commit c68eb6c

Please sign in to comment.