Skip to content

Commit

Permalink
Remove decoding of resppose data
Browse files Browse the repository at this point in the history
  • Loading branch information
Zen-CODE committed Dec 5, 2019
1 parent 1158444 commit 7424ab6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plyer/platforms/android/filechooser.py
Expand Up @@ -143,10 +143,10 @@ def _on_activity_result(self, request_code, result_code, data):

# bad response
if result_code != Activity.RESULT_OK:
print(
'Activity result failed',
result_code, data.getData().toString()
)
# print(
# 'Activity result failed',
# result_code, data.getData().toString()
# )
return

selection = self._resolve_uri(data.getData()) or []
Expand Down

0 comments on commit 7424ab6

Please sign in to comment.