From 6eb60169135a3e750530b5559b1942709684fa18 Mon Sep 17 00:00:00 2001 From: Alex Huang Date: Thu, 1 Dec 2016 23:15:05 -0800 Subject: [PATCH] pep8: Fix E131. --- bots/tddium-notify-humbug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/tddium-notify-humbug b/bots/tddium-notify-humbug index 6ab221c..797fc69 100755 --- a/bots/tddium-notify-humbug +++ b/bots/tddium-notify-humbug @@ -62,7 +62,7 @@ result = client.send_message(dict( to = os.environ['ZULIP_STREAM'], subject = 'build for ' + repo_name, content = '%s [%s](%s)' % - (repo_name, os.environ['TDDIUM_BUILD_STATUS'], report_url))) + (repo_name, os.environ['TDDIUM_BUILD_STATUS'], report_url))) if result['result'] != 'success': sys.stderr.write('Error sending to Zulip:\n%s\n' % (result['msg'],))