Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python_twine/twine/twine_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def is_plural(self) -> bool:
def copy_lang(self, lang: str) -> "TwineDefinition":
""" Copy translation for one language into new definition. """
new_def = TwineDefinition(self.key)
new_def._comment = self._comment
new_def._comment = self.comment
new_def.tags = copy.deepcopy(self.tags)
if lang in self.translations:
new_def.translations[lang] = self.translations[lang]
Expand Down