Get rid of a newline.

This commit is contained in:
Niels G. W. Serup 2016-08-25 02:47:29 +02:00
parent 47c08f8e39
commit 4b6321aecd
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ def youtube_video(file_src):
def generate_video_page(base_dir, out_dir, base_html, showing_html, media):
title = media['title']
year = media['year']
description = media['description']
description = media['description'].rstrip()
name = media['ident']
video_dir = os.path.join(out_dir, name)
os.mkdir(video_dir)