0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-20 22:52:46 -05:00

s/self/this/ in error message

This commit is contained in:
Alex Kocharin 2014-11-25 04:24:18 +03:00
parent ecc5e9bfaf
commit b84bb568cd

View file

@ -69,7 +69,7 @@ function Auth(config) {
adduser: function(user, password, cb) { adduser: function(user, password, cb) {
if (config.users && config.users[user]) if (config.users && config.users[user])
return cb( Error[403]('self user already exists') ) return cb( Error[403]('this user already exists') )
return cb() return cb()
}, },