Use tabs when saving user configs

This commit is contained in:
Pavel Djundik 2016-06-19 20:16:50 +03:00
parent e8cc465228
commit 779aed7cd6
2 changed files with 3 additions and 3 deletions

View file

@ -84,7 +84,7 @@ ClientManager.prototype.addUser = function(name, password) {
};
fs.writeFileSync(
Helper.getUserConfigPath(name),
JSON.stringify(user, null, " ")
JSON.stringify(user, null, "\t")
);
} catch (e) {
log.error("Failed to add user " + name, e);
@ -108,7 +108,7 @@ ClientManager.prototype.updateUser = function(name, opts) {
_.assign(user, opts);
fs.writeFileSync(
Helper.getUserConfigPath(name),
JSON.stringify(user, null, " ")
JSON.stringify(user, null, "\t")
);
} catch (e) {
log.error("Failed to update user", e);

View file

@ -26,7 +26,7 @@ program
user.token = null; // Will be regenerated when the user is loaded
fs.writeFileSync(
file,
JSON.stringify(user, null, " ")
JSON.stringify(user, null, "\t")
);
log.info("Successfully reset password for '" + name + "'.");
});