You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of letting the user a choice, Create a new file automatically to store future
def _get_wordlist_path(self):
if self.current:
return self.current
pr('Please choose a wordlist')
return choose_file(self.workspace)
Make it:
def _get_wordlist_path(self):
if self.current:
return self.current
pr('Creating a new wordlist for you')
# Creating blah blah
return TheCreatedWordlist
The text was updated successfully, but these errors were encountered:
Instead of letting the user a choice, Create a new file automatically to store future
Make it:
The text was updated successfully, but these errors were encountered: