We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5bf65f6 + 9f6160f commit 058f083Copy full SHA for 058f083
testdroid/__init__.py
@@ -398,7 +398,7 @@ def get_project(self, project_id):
398
"""
399
def print_projects(self, limit=0):
400
me = self.get_me()
401
- print("Projects for %s <%s>:" % (me['name'], me['email']))
+ print("Projects for %s %s <%s>:" % (me['firstName'], me['lastName'], me['email']))
402
403
for project in self.get_projects(limit)['data']:
404
print("%s %s \"%s\"" % (str(project['id']).ljust(10), project['type'].ljust(15), project['name']))
0 commit comments