From dbd03a066b2c8b347b222ec77ada4561fdca59c4 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sat, 20 Apr 2019 14:47:06 +0200 Subject: [PATCH] =?UTF-8?q?Das=20datumsformat=20f=C3=BCr=20=C3=BCbermorgen?= =?UTF-8?q?=20hatte=20ich=20vergessen=20zu=20=C3=A4ndern.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- feiertagebot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feiertagebot.cpp b/feiertagebot.cpp index 57eaf02..18645bd 100644 --- a/feiertagebot.cpp +++ b/feiertagebot.cpp @@ -148,7 +148,7 @@ int main() string year = get_date(system_clock::now(), "%Y"); string tomorrow = get_date(system_clock::now() + hours(24), "%Y-%m-%d"); string overmorrow = get_date(system_clock::now() + hours(48), - "%d.%m.%Y"); + "%Y-%m-%d"); curlpp::Easy request; std::stringstream ss;