We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
e
1 parent 01c8d2d commit 1fedb1fCopy full SHA for 1fedb1f
1 file changed
bitsandbytes/__main__.py
@@ -16,7 +16,7 @@ def find_file_recursive(folder, filename):
16
out = glob.glob(os.path.join(folder, "**", filename + ext))
17
outs.extend(out)
18
except Exception as e:
19
- raise RuntimeError('Error: Something when wrong when trying to find file. {e}')
+ raise RuntimeError('Error: Something when wrong when trying to find file.') from e
20
21
return outs
22
0 commit comments