When moving files using the shutill module: shutill.move(path1,path2) this error:
Traceback (most recent call last): File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1535, in __call__ return self.func(*args) File "cleaner.py", line 88, in moveF moveFiles(pathdir,videos,"vid", dirnames) File "cleaner.py", line 70, in moveFiles shutil.move(path+file1, pathe3+file1) UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 4: ordinal not in range(128) The paths are taken using Tkinter, tkFileDialog, and files through os.listdir I tried to use path1.decode("utf-8") and path2.decode("utf-8") result is the same. (