Skip to content

Commit

Permalink
Update WhoisIAm.py
Browse files Browse the repository at this point in the history
Fixed "NameError: 'arg' undefined."
  • Loading branch information
semiamaurotic committed Jul 24, 2017
1 parent 2693482 commit bf5a88d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BAC0/core/functions/WhoisIAm.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def whois(self, *args):

if args:
args = args[0].split()
msg= arg if args else 'any'
msg = args if args else 'any'

log_debug(WhoisIAm, "do_whois %r" % msg)

Expand Down

0 comments on commit bf5a88d

Please sign in to comment.