1
0
mirror of https://github.com/chubin/cheat.sh.git synced 2026-06-20 13:16:44 +02:00

Merge pull request #180 from Seirdy/fix/py3-no-str-decode

Fix: Py3: don't use str.decode()
This commit is contained in:
Igor Chubin
2020-03-19 21:50:17 +01:00
committed by GitHub
+1 -1
View File
@@ -90,7 +90,7 @@ class Tldr(GitRepositoryAdapter):
# though it should not happen
answer = ''
return answer.decode('utf-8')
return answer
@classmethod
def get_updates_list(cls, updated_files_list):