diff --git a/cgi-bin/uebung07/posts-show.py b/cgi-bin/uebung07/posts-show.py index bd52305..3b60c50 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['prettytime'])) print('
') print(str(data['content']) + '

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