From a0a74cb558ab2f7c27ec28d434345e11324f5f3a Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Tue, 21 Jul 2020 18:34:14 -0700 Subject: [PATCH] remove trailing comma --- certbot-ci/snap_integration_tests/dns_tests/test_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-ci/snap_integration_tests/dns_tests/test_main.py b/certbot-ci/snap_integration_tests/dns_tests/test_main.py index 867e9e8d5..948ead23b 100644 --- a/certbot-ci/snap_integration_tests/dns_tests/test_main.py +++ b/certbot-ci/snap_integration_tests/dns_tests/test_main.py @@ -39,7 +39,7 @@ def test_dns_plugin_install(dns_snap_path): assert plugin_name in subprocess.check_output(['certbot', 'plugins', '--prepare'], universal_newlines=True) subprocess.check_call(['snap', 'connect', snap_name + ':certbot-metadata', - 'certbot:certbot-metadata',]) + 'certbot:certbot-metadata']) subprocess.check_call(['snap', 'install', '--dangerous', dns_snap_path]) finally: subprocess.call(['snap', 'remove', 'plugin_name'])