Skip to content

Commit

Permalink
Fix use of old argument names in if-condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Dana Räder committed Dec 18, 2024
1 parent f2c1747 commit dc8682c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perfact/zodbsync/commands/pick.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def add_args(parser):
@SubCommand.gitexec
def run(self):
commits = []
if self.args.grep or self.args.after or self.args.before:
if self.args.grep or self.args.since or self.args.until:
cmd = [
'log', '--format=%H', '--reverse'
]
Expand Down

0 comments on commit dc8682c

Please sign in to comment.