Skip to content

Commit

Permalink
Remove redundant comma
Browse files Browse the repository at this point in the history
  • Loading branch information
evilaliv3 committed Dec 31, 2024
1 parent 7c2d073 commit 252fdf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/globaleaks/handlers/public.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def db_serialize_node(session, tid, language):
"""
languages = db_get_languages(session, tid)
ret = ConfigFactory(session, tid).serialize('public_node')
ret.update(ConfigL10NFactory(session, tid,).serialize('public_node', language))
ret.update(ConfigL10NFactory(session, tid).serialize('public_node', language))

ret['start_time'] = State.start_time
ret['root_tenant'] = tid == 1
Expand Down

0 comments on commit 252fdf0

Please sign in to comment.