From ae3bbec4895309a14d90c1f40d785bcebd40403e Mon Sep 17 00:00:00 2001 From: James Tanner Date: Wed, 12 Mar 2014 17:36:40 -0400 Subject: [PATCH] Close parens in portinstall --- packaging/portinstall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/portinstall b/packaging/portinstall index 057eee6fa74..88e654b8db4 100644 --- a/packaging/portinstall +++ b/packaging/portinstall @@ -71,7 +71,7 @@ def query_package(module, name): if pkg_info_path: pkgng = False pkg_glob_path = module.get_bin_path('pkg_glob', True) - rc, out, err = module.run_command("%s -e `pkg_glob %s`" % (pkg_info_path, pipes.quote(name), use_unsafe_shell=True) + rc, out, err = module.run_command("%s -e `pkg_glob %s`" % (pkg_info_path, pipes.quote(name)), use_unsafe_shell=True) else: pkgng = True pkg_info_path = module.get_bin_path('pkg', True)