##// END OF EJS Templates
action-parser: fixed filter call
super-admin -
r4970:5ee395cb default
parent child Browse files
Show More
@@ -244,7 +244,7 b' class ActionParser(object):'
244 244
245 245 def get_commits(self, commit_ids):
246 246 commits = []
247 if not filter(lambda v: v != '', commit_ids):
247 if not [v for v in commit_ids if v != '']:
248 248 return commits
249 249
250 250 repo = None
General Comments 0
You need to be logged in to leave comments. Login now