diff options
| author | 2019-05-21 10:45:15 +0100 | |
|---|---|---|
| committer | 2019-05-21 10:45:15 +0100 | |
| commit | 5ba3c5d460b93bedb9deafc4df12685d1b4b6982 (patch) | |
| tree | f625e6628e9680831f7f1d29567da69a4fc9b631 /modules/admin.py | |
| parent | Strip "+" from the start of `port` after checking if it is present (diff) | |
| signature | ||
Typo, 'usernaame' -> 'username'
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 40a9720b..f7cc3e44 100644 --- a/modules/admin.py +++ b/modules/admin.py @@ -119,7 +119,7 @@ class Module(ModuleManager.BaseModule): hostmask = utils.irc.seperate_hostmask(event["args_split"][2]) nickname = hostmask.nickname - username = hostmask.usernaame or nickname + username = hostmask.username or nickname realname = nickname bindhost = hostmask.hostname or None |
