Changes in tools/mkfat.py [87608a5:67435b1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/mkfat.py
r87608a5 r67435b1 189 189 "Filter FAT legal characters" 190 190 191 filtered_name = ''191 filtered_name = b'' 192 192 filtered = False 193 193 … … 205 205 206 206 ascii_name, lfn = fat_lchars(name) 207 ascii_parts = ascii_name.split('.') 207 # Splitting works only on strings, not on bytes 208 ascii_parts = ascii_name.decode('utf8').split('.') 208 209 209 210 short_name = '' … … 444 445 extra_bytes = int(sys.argv[1]) 445 446 446 path = os.path.abspath(sys.argv[2] .decode())447 path = os.path.abspath(sys.argv[2]) 447 448 if (not os.path.isdir(path)): 448 449 print("<PATH> must be a directory")
Note:
See TracChangeset
for help on using the changeset viewer.