Skip to content

Commit

Permalink
fix missing * in Listitem.recent
Browse files Browse the repository at this point in the history
  • Loading branch information
willforde committed Oct 13, 2018
1 parent c394dc3 commit 35122f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script.module.codequick/lib/codequick/listing.py
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ def recent(cls, callback, *args, **kwargs):
item.label = bold(Script.localize(RECENT_VIDEOS))
item.info["plot"] = "Show the most recent videos."
item.art.global_thumb("recent.png")
item.set_callback(callback, args, **kwargs)
item.set_callback(callback, *args, **kwargs)
return item

@classmethod
Expand Down

0 comments on commit 35122f7

Please sign in to comment.