Skip to content

Commit

Permalink
Fix problem writing LangAlt data to IPTC-IIM
Browse files Browse the repository at this point in the history
  • Loading branch information
jim-easterbrook committed Dec 6, 2022
1 parent 6b45bfc commit 0fa1547
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/photini/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Full documentation is at https://photini.readthedocs.io/"""

__version__ = '2022.12.0.2'
build = '2339 (f33ce98)'
__version__ = '2022.12.0.3'
build = '2340 (6b45bfc)'
3 changes: 3 additions & 0 deletions src/photini/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -974,6 +974,9 @@ def to_exif(self):
return None
return self.default_text()

def to_iptc(self):
return self.to_exif()

def to_xmp(self):
if not self:
return None
Expand Down

0 comments on commit 0fa1547

Please sign in to comment.