diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2009-10-20 09:59:06 +0200 |
---|---|---|
committer | Olivier Tilloy <olivier@fluendo.com> | 2009-10-20 09:59:06 +0200 |
commit | bd14365ded7630441a1f08d303114398df463b9c (patch) | |
tree | 3c66400f11604116c8c8daeebf6f12e4673f1a6a /test/exif.py | |
parent | 4a7092691ef7ab3f11c8edcf4f28c8b42bf5342f (diff) | |
parent | b6182ecb49d515f34b55666ec7e85f4ae4bc431a (diff) | |
download | pyexiv2-bd14365ded7630441a1f08d303114398df463b9c.tar.gz |
Code split into various python modules.
Diffstat (limited to 'test/exif.py')
-rw-r--r-- | test/exif.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/exif.py b/test/exif.py index d32e30d..44ae394 100644 --- a/test/exif.py +++ b/test/exif.py @@ -25,7 +25,10 @@ # ****************************************************************************** import unittest -from pyexiv2 import ExifTag, ExifValueError, Rational + +from pyexiv2.exif import ExifTag, ExifValueError +from pyexiv2.utils import Rational + import datetime |