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