Skip to content

Commit dd525f1

Browse files
committed
sch: offset list elements
1 parent b4f7703 commit dd525f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code/espurna/scheduler.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@ String sunrise_sunset(const sun::EventMatch& match) {
905905
}
906906

907907
void format_output(::terminal::CommandContext& ctx, const String& prefix, const String& value) {
908-
ctx.output.printf_P(PSTR("%s%s%s\n"),
908+
ctx.output.printf_P(PSTR("- %s%s%s\n"),
909909
prefix.c_str(),
910910
value.length()
911911
? PSTR(" at ")
@@ -973,7 +973,7 @@ void event(::terminal::CommandContext&& ctx) {
973973
}
974974

975975
const auto seconds = to_seconds(entry.time_point);
976-
ctx.output.printf_P(PSTR("\"%s\" at %s\n"),
976+
ctx.output.printf_P(PSTR("- \"%s\" at %s\n"),
977977
entry.name.c_str(),
978978
datetime::format_local_tz(seconds.count()).c_str());
979979

0 commit comments

Comments
 (0)