From 0784fa1765b4e7e1cefdc45fa1c9ca1478763e1f Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 29 Jul 2015 11:00:04 -0400 Subject: [PATCH] removed import q --- lib/ansible/cli/galaxy.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/ansible/cli/galaxy.py b/lib/ansible/cli/galaxy.py index fa22ee060a7..59415997e86 100644 --- a/lib/ansible/cli/galaxy.py +++ b/lib/ansible/cli/galaxy.py @@ -324,8 +324,6 @@ class GalaxyCLI(CLI): f = open(role_file, 'r') if role_file.endswith('.yaml') or role_file.endswith('.yml'): rolesparsed = map(self.parse_requirements_files, yaml.safe_load(f)) - import q - q(rolesparsed) roles_left = [GalaxyRole(self.galaxy, **r) for r in rolesparsed] else: # roles listed in a file, one per line