Skip to content
Snippets Groups Projects

Simulator Fixes

Merged rahix requested to merge rahix/sim-fixes into main
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -102,7 +102,7 @@ orig_stat = os.stat
def _stat(path):
res = orig_stat(path)
# lmao
return (res.st_mode, 0, 0, 0, 0, 0, 0, 0, 0, 0)
return os.stat_result((res.st_mode, 0, 0, 0, 0, 0, 0, 0, 0, 0))
os.stat = _stat
Loading