Skip to content

Commit 599647f

Browse files
authored
Bugfix: Default wordlist with STDIN
1 parent 66397e8 commit 599647f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

VHostScan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def main():
3535
word_list_types = []
3636

3737
default_wordlist = DEFAULT_WORDLIST_FILE \
38-
if not sys.stdin.isatty() else None
38+
if sys.stdin.isatty() else None
3939

4040
if not sys.stdin.isatty():
4141
word_list_types.append('stdin')

0 commit comments

Comments
 (0)