Skip to content

Commit 410e737

Browse files
committed
Updated output rendering for request for merge list
1 parent 8ba7189 commit 410e737

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git_repo/repo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def main(args):
183183
log.info('List of open requests to merge:')
184184
log.info(" {}\t{}\t{}".format('id', 'title'.ljust(60), 'URL'))
185185
for pr in service.request_list(user, repo):
186-
print("{: 3}\t{}\t{}".format(pr[0], pr[1][:60].ljust(60), pr[2]))
186+
print("{}\t{}\t{}".format(pr[0].rjust(3), pr[1][:60].ljust(60), pr[2]))
187187
elif args['fetch'] and args['<request>']:
188188
new_branch = service.request_fetch(user, repo, args['<request>'])
189189
log.info('Successfully fetched request id `{}` of `{}` into `{}`!'.format(

0 commit comments

Comments
 (0)