@@ -492,7 +492,7 @@ def course_page(course, lesson, page, solution=None):
492
492
kwargs ["edit_info" ] = links .process_edit_info (data_from_fork .get ("edit_info" ))
493
493
prev_link , session_link , next_link = process_footer_data (data_from_fork .get ("footer" ))
494
494
495
- title = '{}: {}' .format (course ["title" ], page ["title" ]),
495
+ title = '{}: {}' .format (course ["title" ], page ["title" ])
496
496
except POSSIBLE_FORK_EXCEPTIONS as e :
497
497
if raise_errors_from_forks ():
498
498
raise
@@ -510,7 +510,7 @@ def course_page(course, lesson, page, solution=None):
510
510
lesson , page , solution , course ,
511
511
lesson_url = lesson_url , subpage_url = subpage_url , static_url = static_url
512
512
)["content" ]
513
- title = '{}: {}' .format (course .title , page .title ),
513
+ title = '{}: {}' .format (course .title , page .title )
514
514
515
515
try :
516
516
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):
558
558
)
559
559
content = content ["content" ]
560
560
allowed_elements_parser .reset_and_feed (content )
561
- title = '{}: {}' .format (course .title , page .title ),
561
+ title = '{}: {}' .format (course .title , page .title )
562
562
563
563
kwargs ["edit_info" ] = get_edit_info (page .edit_path )
564
564
0 commit comments