Skip to content

Commit cc69188

Browse files
Merge pull request #234 from sileht/sileht/findfile-must-fail
stop if find_files fail
2 parents 2eb1281 + 6991fd0 commit cc69188

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

setuptools_scm/integration.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,8 @@ def find_files(path='.'):
3636
else:
3737
return command(path)
3838
except Exception:
39-
import traceback
4039
print("File Finder Failed for %s" % ep)
41-
traceback.print_exc()
42-
return []
40+
raise
4341

4442
else:
4543
return []

0 commit comments

Comments
 (0)