This commit is contained in:
Kovid Goyal 2023-04-23 09:05:58 +05:30
parent 29c9f22fee
commit c352e3e9ed
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -69,7 +69,7 @@ class Bug:
msg = msg.replace('Fixesed', 'Fixed') msg = msg.replace('Fixesed', 'Fixed')
env = dict(os.environ) env = dict(os.environ)
env['LAUNCHPAD_FIX_BUG'] = msg 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(): def main():