- Timestamp:
- Jun 13, 2020 3:50:13 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
install/bootstrap.py
r4477 r4487 120 120 ''' 121 121 if isinstance(arg,str): return arg 122 if isinstance(arg,bytes): return arg.decode() 122 if isinstance(arg,bytes): 123 try: 124 return arg.decode() 125 except: 126 print('Decode error') 127 return arg 123 128 if isinstance(arg,list): 124 129 return [MakeByte2str(i) for i in arg]
Note: See TracChangeset
for help on using the changeset viewer.