File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1152,15 +1152,15 @@ def get_tag_from_handle(self, handle):
1152
1152
LOG .warning ("handle %s does not exist in the dummy database" , handle )
1153
1153
raise HandleError (f"Handle { handle } not found" )
1154
1154
1155
- def get_tag_from_name (self , val ):
1155
+ def get_tag_from_name (self , name ):
1156
1156
"""
1157
1157
Find a Tag in the database from the passed Tag name.
1158
1158
1159
1159
If no such Tag exists, None is returned.
1160
1160
"""
1161
1161
if not self .db_is_open :
1162
1162
LOG .debug ("database is closed" )
1163
- LOG .warning ("tag name %s does not exist in the dummy database" , val )
1163
+ LOG .warning ("tag name %s does not exist in the dummy database" , name )
1164
1164
1165
1165
def get_tag_handles (self , sort_handles = False , locale = glocale ):
1166
1166
"""
Original file line number Diff line number Diff line change @@ -648,12 +648,12 @@ def get_note_from_gramps_id(self, gramps_id):
648
648
self .include_note , self .db .get_note_from_gramps_id (gramps_id )
649
649
)
650
650
651
- def get_tag_from_name (self , val ):
651
+ def get_tag_from_name (self , name ):
652
652
"""
653
653
Finds a Tag in the database from the passed tag name.
654
654
If no such Tag exists, None is returned.
655
655
"""
656
- return self .gfilter (self .include_tag , self .db .get_tag_from_name (val ))
656
+ return self .gfilter (self .include_tag , self .db .get_tag_from_name (name ))
657
657
658
658
def get_name_group_mapping (self , surname ):
659
659
"""
You can’t perform that action at this time.
0 commit comments