Fixing a bug in galaxy parsing of text spec file lines

This commit is contained in:
James Cammarata 2015-10-06 21:25:28 -04:00
parent 7a815b7296
commit 8107c4efc7

View file

@ -318,7 +318,7 @@ class GalaxyCLI(CLI):
# roles listed in a file, one per line
for rline in f.readlines():
self.display.debug('found role %s in text file' % str(rline))
role = RoleRequirement.role_yaml_parse(rline)
role = RoleRequirement.role_yaml_parse(rline.strip())
roles_left.append(GalaxyRole(self.galaxy, **role))
f.close()
except (IOError, OSError) as e: