From 9e166f799ce5e1e512a7e800c1cad67a547d404e Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Thu, 2 Jan 2020 17:49:02 -0800 Subject: [PATCH] gitweb: Fix flake8 error that is causing pipeline failures Signed-off-by: Sunil Mohan Adapa --- plinth/modules/gitweb/tests/test_views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/modules/gitweb/tests/test_views.py b/plinth/modules/gitweb/tests/test_views.py index 6ddab24e7..cce64e8b9 100644 --- a/plinth/modules/gitweb/tests/test_views.py +++ b/plinth/modules/gitweb/tests/test_views.py @@ -55,7 +55,7 @@ EXISTING_REPOS = [ def fixture_gitweb_urls(): """Make sure gitweb app's URLs are part of plinth.urls.""" with patch('plinth.module_loader._modules_to_load', new=[]) as modules, \ - patch('plinth.urls.urlpatterns', new=[]): + patch('plinth.urls.urlpatterns', new=[]): modules.append('plinth.modules.gitweb') module_loader.include_urls() yield