Skip to content

Commit

Permalink
Updating string format for case missed in PR #746. (#757)
Browse files Browse the repository at this point in the history
  • Loading branch information
telenachos authored and nmanovic committed Oct 7, 2019
1 parent ff1f6cf commit a18e83b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/cli/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def tasks(self):
return self.base + 'tasks'

def tasks_page(self, page_id):
return self.tasks + '?page={page_id}'
return self.tasks + '?page={}'.format(page_id)

def tasks_id(self, task_id):
return self.tasks + '/{}'.format(task_id)
Expand Down

0 comments on commit a18e83b

Please sign in to comment.