Minor cosmetic fix to notify when user encounters Exception.

This commit is contained in:
NotoriousRebel 2019-01-01 21:40:36 -05:00
parent 457e4a4242
commit cec034e811

View file

@ -69,7 +69,7 @@ def crawl(self, text):
tmp.add(url)
return tmp
except Exception as e:
print(e)
print('Exception occurred: ' + str(e))
return []
def get_emails(self):