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.
1 parent 2c2e2b4 commit 107d907Copy full SHA for 107d907
setup.py
@@ -2,7 +2,7 @@
2
3
setup(
4
name='truffleHog',
5
- version='2.0.87',
+ version='2.0.88',
6
description='Searches through git repositories for high entropy strings, digging deep into commit history.',
7
url='https://github.com/dxa4481/truffleHog',
8
author='Dylan Ayrey',
truffleHog/truffleHog.py
@@ -12,8 +12,11 @@
12
import re
13
import json
14
import stat
15
-from defaultRegexes.regexChecks import regexes
16
from git import Repo
+try:
17
+ from defaultRegexes.regexChecks import regexes
18
+except ImportError:
19
+ from truffleHog.defaultRegexes.regexChecks import regexes
20
21
def main():
22
parser = argparse.ArgumentParser(description='Find secrets hidden in the depths of git.')
0 commit comments