From ba0ba8f7a84995837eb818591fe0b15bd328fef5 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Tue, 30 Jan 2018 15:28:12 +0100 Subject: Inspect output --- sinksh/syntax_modules/sink_inspect.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sinksh') diff --git a/sinksh/syntax_modules/sink_inspect.cpp b/sinksh/syntax_modules/sink_inspect.cpp index 839b039..c0aca24 100644 --- a/sinksh/syntax_modules/sink_inspect.cpp +++ b/sinksh/syntax_modules/sink_inspect.cpp @@ -148,7 +148,7 @@ bool inspect(const QStringList &args, State &state) if (showInternal) { //Print internal keys db.scan("__internal", [&] (const QByteArray &key, const QByteArray &data) { - state.printLine("Internal: " + key + " Value: " + QString::fromUtf8(data)); + state.printLine("Internal: " + key + "\tValue: " + QString::fromUtf8(data)); return true; }, [&](const Sink::Storage::DataStore::Error &e) { @@ -182,7 +182,7 @@ bool inspect(const QStringList &args, State &state) ); } } else { - state.printLine("Key: " + key + " Value: " + QString::fromUtf8(data)); + state.printLine("Key: " + key + "\tValue: " + QString::fromUtf8(data)); } return true; }, -- cgit v1.2.3