@@ -492,7 +492,7 @@ def course_page(course, lesson, page, solution=None):
492492 kwargs ["edit_info" ] = links .process_edit_info (data_from_fork .get ("edit_info" ))
493493 prev_link , session_link , next_link = process_footer_data (data_from_fork .get ("footer" ))
494494
495- title = '{}: {}' .format (course ["title" ], page ["title" ]),
495+ title = '{}: {}' .format (course ["title" ], page ["title" ])
496496 except POSSIBLE_FORK_EXCEPTIONS as e :
497497 if raise_errors_from_forks ():
498498 raise
@@ -510,7 +510,7 @@ def course_page(course, lesson, page, solution=None):
510510 lesson , page , solution , course ,
511511 lesson_url = lesson_url , subpage_url = subpage_url , static_url = static_url
512512 )["content" ]
513- title = '{}: {}' .format (course .title , page .title ),
513+ title = '{}: {}' .format (course .title , page .title )
514514
515515 try :
516516 prev_link , session_link , next_link = course .get_footer_links (lesson .slug , page_slug ,
@@ -558,7 +558,7 @@ def course_page(course, lesson, page, solution=None):
558558 )
559559 content = content ["content" ]
560560 allowed_elements_parser .reset_and_feed (content )
561- title = '{}: {}' .format (course .title , page .title ),
561+ title = '{}: {}' .format (course .title , page .title )
562562
563563 kwargs ["edit_info" ] = get_edit_info (page .edit_path )
564564
0 commit comments