diff options
| author | 2019-09-16 18:43:57 +0100 | |
|---|---|---|
| committer | 2019-09-16 18:43:57 +0100 | |
| commit | 334d580c57551cb0489ff334ad5e716c7c73f93e (patch) | |
| tree | f00f955c9dc83f9c8218688447b4ec2cb7d05b83 /modules/admin.py | |
| parent | update channel.topic_setter-related code (diff) | |
| signature | ||
'seperate_hostmask()' -> 'parse_hostmask()'
Diffstat (limited to 'modules/admin.py')
| -rw-r--r-- | modules/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin.py b/modules/admin.py index 12c1895d..4d4250bc 100644 --- a/modules/admin.py +++ b/modules/admin.py @@ -131,7 +131,7 @@ class Module(ModuleManager.BaseModule): raise utils.EventError("Please provide <hostname>:[+]<port>") port = int(port) - hostmask = utils.irc.seperate_hostmask(event["args_split"][2]) + hostmask = utils.irc.parse_hostmask(event["args_split"][2]) nickname = hostmask.nickname username = hostmask.username or nickname realname = nickname |
