From b07ed9df29848a23c7ad737e8f9b72c7dd7b99e1 Mon Sep 17 00:00:00 2001 From: structix Date: Mon, 24 Jun 2019 11:14:01 +0200 Subject: [PATCH] Update --- cgi-bin/uebung07/posts-show.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgi-bin/uebung07/posts-show.py b/cgi-bin/uebung07/posts-show.py index 3b60c50..f090bd9 100755 --- a/cgi-bin/uebung07/posts-show.py +++ b/cgi-bin/uebung07/posts-show.py @@ -19,7 +19,7 @@ for i in file_names: data = open(i, "r") data = json.load(data) print('
') - print(str(data['title']) + "
Datum: " + str(data['prettytime'])) + print(str(data['title']) + "
Datum: " + str(data['published'])) print('
') print(str(data['content']) + '

') for k in data['tags']: