File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3516,7 +3516,7 @@ class RepoFilter(object):
3516
3516
contents = subproc .check_output (cmd )
3517
3517
except subprocess .CalledProcessError as e : # pragma: no cover
3518
3518
raise SystemExit (_ ("Failed loading %s from %s" ) %
3519
- (decode (marks_basename ), branch ))
3519
+ (decode (marks_basename ), full_branch ))
3520
3520
if contents :
3521
3521
biggest_id = max (int (x .split ()[0 ][1 :]) for x in contents .splitlines ())
3522
3522
_IDS ._next_id = max (_IDS ._next_id , biggest_id + 1 )
Original file line number Diff line number Diff line change 9
9
import git_filter_repo as fr
10
10
11
11
def handle_tag (tag ):
12
- print ("Decipher this : " + '' .join (reversed ( progress . message ) ))
12
+ print ("Tagger : " + '' .join (tag . tagger_name ))
13
13
14
14
args = fr .FilteringOptions .parse_args (['--force' , '--tag-callback' , 'pass' ])
15
15
filter = fr .RepoFilter (args , tag_callback = handle_tag )
You can’t perform that action at this time.
0 commit comments