Skip to content

Commit

Permalink
[minor] fixes #54, a small visual bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoreed committed Jul 1, 2011
1 parent 011ff22 commit 9dfb1f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/jitsu/commands/users.js
Expand Up @@ -171,7 +171,7 @@ users.forgot = function (username, callback) {
return callback(new Error('Username is required'), true);
}

winston.info('Request password reset for :' + username.magenta);
winston.info('Request password reset for: ' + username.magenta);
jitsu.users.forgot(username, function (err, result) {
if (err) {
return callback(err);
Expand All @@ -186,4 +186,4 @@ users.forgot.usage = [
'Sends the password reset email to the user with the specified `username`.',
'',
'jitsu users forgot <username>'
];
];

0 comments on commit 9dfb1f8

Please sign in to comment.