From c352e3e9ede001c5fe20aca8bb66a64618b44835 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 23 Apr 2023 09:05:58 +0530 Subject: [PATCH] ... --- setup/git_pre_commit_hook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/git_pre_commit_hook.py b/setup/git_pre_commit_hook.py index 4ecb73cd4e..21d3d0996d 100755 --- a/setup/git_pre_commit_hook.py +++ b/setup/git_pre_commit_hook.py @@ -69,7 +69,7 @@ class Bug: msg = msg.replace('Fixesed', 'Fixed') env = dict(os.environ) env['LAUNCHPAD_FIX_BUG'] = msg - subprocess.run([sys.executable, LAUNCHPAD], env=env, input=f'Subject: [Bug ({bug})]', text=True, check=True) + subprocess.run([sys.executable, LAUNCHPAD], env=env, input=f'Subject: [Bug {bug}]', text=True, check=True) def main():