0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-26 08:42:34 +01:00

modules/console: Remove the temporary escape workaround in conf list. (Closes #101)

This commit is contained in:
Jason Volk 2019-08-02 14:30:10 -07:00
parent 09b7299ca8
commit 7694a48afa

View file

@ -1417,7 +1417,7 @@ console_cmd__conf__list(opt &out, const string_view &line)
out
<< std::setw(64) << std::left << std::setfill('_') << item.first
<< " " << item.second->get(val) << "\033[0m"
<< " " << item.second->get(val)
<< std::endl;
}