Updated gitignore and removed debugging remnants.

This commit is contained in:
NotoriousRebel 2020-01-02 21:12:56 -05:00
parent 6a62d2db4b
commit 3c5221f324
2 changed files with 2 additions and 3 deletions

3
.gitignore vendored
View file

@ -10,4 +10,5 @@ venv
.pytest_cache .pytest_cache
build/ build/
dist/ dist/
theHarvester.egg-info/ theHarvester.egg-info/
api-keys.yaml

View file

@ -120,8 +120,6 @@ async def process(self):
raise Exception("\tUnknown exception occurred") raise Exception("\tUnknown exception occurred")
except Exception as e: except Exception as e:
print(f'An exception has occurred: {e}') print(f'An exception has occurred: {e}')
import traceback as t
t.print_exc()
async def get_emails(self): async def get_emails(self):
rawres = myparser.Parser(self.total_results, self.word) rawres = myparser.Parser(self.total_results, self.word)