Skip to content

Commit 70f83c2

Browse files
committed
filter-lamely: fix NameError because of forgotten fr module prefix
In repositories with annotated tags filter-lamely crashes with the message: "NameError: name 'Reset' is not defined". This is because of a missing "fr" module prefix in the code, which this commit adds. Signed-off-by: Marius Renner <[email protected]>
1 parent f164f2b commit 70f83c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/filter-repo-demos/filter-lamely

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ class UserInterfaceNightmare:
575575
return
576576

577577
tag.skip()
578-
reset = Reset(tag.ref, tag.from_ref)
578+
reset = fr.Reset(tag.ref, tag.from_ref)
579579
self.filter.insert(reset, direct_insertion = False)
580580

581581
def muck_stuff_up(self):

0 commit comments

Comments
 (0)