Skip to content

Commit

Permalink
Update truncated entries message with -l/--limit
Browse files Browse the repository at this point in the history
  • Loading branch information
donnemartin committed May 9, 2016
1 parent 1c733be commit 10d2a09
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions gitsome/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,7 @@ def build_table(self, view_entries, limit, pager, format_method,
if len(view_entries) > limit:
output += click.style((' <Hiding ' +
str(len(view_entries) - limit) +
' item(s), use -l/--limit ' +
str(len(view_entries)) +
' to view all items.>\n'),
' item(s) with the -l/--limit flag>\n'),
fg=self.config.clr_message)
if index == 0:
output += click.style('No results found',
Expand Down

0 comments on commit 10d2a09

Please sign in to comment.