Attempt to fix encoding error

This commit is contained in:
angelblue05 2017-12-13 02:37:40 -06:00
parent 2193651627
commit bfaed955f5
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class Credentials(object):
def setPath(self, path): def setPath(self, path):
# Path to save persistant data.txt # Path to save persistant data.txt
self.path = path self.path = path.decode('utf-8')
def _ensure(self): def _ensure(self):