Use gender-neutral language

This commit is contained in:
Leet 2023-10-23 17:41:38 -04:00
parent 894039d000
commit eea7c19abc
2 changed files with 3 additions and 3 deletions

View file

@ -412,7 +412,7 @@ class ImportSession:
def ask_resume(self, toppath):
"""If import of `toppath` was aborted in an earlier session, ask
user if she wants to resume the import.
user if they want to resume the import.
Determines the return value of `is_resuming(toppath)`.
"""

View file

@ -220,7 +220,7 @@ class EditPlugin(plugins.BeetsPlugin):
- `fields`: The set of field names to edit (or None to edit
everything).
"""
# Present the YAML to the user and let her change it.
# Present the YAML to the user and let them change it.
success = self.edit_objects(objs, fields)
# Save the new data.
@ -370,7 +370,7 @@ class EditPlugin(plugins.BeetsPlugin):
if not obj._db or obj.id is None:
obj.id = -i
# Present the YAML to the user and let her change it.
# Present the YAML to the user and let them change it.
fields = self._get_fields(album=False, extra=[])
success = self.edit_objects(task.items, fields)