diff --git a/plinth/modules/gitweb/manifest.py b/plinth/modules/gitweb/manifest.py index 0743c3c1f..f62b1d4a4 100644 --- a/plinth/modules/gitweb/manifest.py +++ b/plinth/modules/gitweb/manifest.py @@ -34,23 +34,19 @@ clients = validate([ { 'name': _('Git'), - 'platforms': [ - { - 'type': 'download', - 'os': 'gnu-linux', - 'url': 'https://git-scm.com/download/linux' - }, - { - 'type': 'download', - 'os': 'macos', - 'url': 'https://git-scm.com/download/mac' - }, - { - 'type': 'download', - 'os': 'windows', - 'url': 'https://git-scm.com/download/mac' - }, - ] + 'platforms': [{ + 'type': 'download', + 'os': 'gnu-linux', + 'url': 'https://git-scm.com/download/linux' + }, { + 'type': 'download', + 'os': 'macos', + 'url': 'https://git-scm.com/download/mac' + }, { + 'type': 'download', + 'os': 'windows', + 'url': 'https://git-scm.com/download/mac' + }] }, ])