From f62d35bf3c92a643c7d7f07b89df7ddff56bbf93 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Thu, 20 Dec 2018 11:03:54 +0000 Subject: [PATCH] Don't lose the comma! --- tools/copyright_updater.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/copyright_updater.py b/tools/copyright_updater.py index c904c5f68..218101670 100644 --- a/tools/copyright_updater.py +++ b/tools/copyright_updater.py @@ -4,7 +4,7 @@ # # pgAdmin 4 - PostgreSQL Tools # -# Copyright (C) 2013 - 2019 The pgAdmin Development Team +# Copyright (C) 2013 - 2018 The pgAdmin Development Team # This software is released under the PostgreSQL Licence # ########################################################################## @@ -57,7 +57,7 @@ def findReplace(directory, find, replace): is_update_required = False new_content = COPYRIGHT_PATTERN.sub( - r'\g<1>{}'.format(replace), content + r'\g<1>{},'.format(replace), content ) if new_content != content: is_update_required = True