diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-04-06 13:58:47 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-04-06 13:58:47 -0500 |
commit | bfb99d65f4e92d018a73b67bed2cea9d629a41e2 (patch) | |
tree | 7f85b835a43c25562ebedf6c7ad50130408c71d9 | |
parent | b19491c535332243b88ba541e31c0469b9608f25 (diff) | |
download | mediagoblin-bfb99d65f4e92d018a73b67bed2cea9d629a41e2.tar.lz mediagoblin-bfb99d65f4e92d018a73b67bed2cea9d629a41e2.tar.xz mediagoblin-bfb99d65f4e92d018a73b67bed2cea9d629a41e2.zip |
No more EXIF, for real. Use exifread. This should fix recent import EXIF failures.
This commit sponsored by Aaron Whitehouse. Thank you!
-rw-r--r-- | mediagoblin/tools/exif.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/mediagoblin/tools/exif.py b/mediagoblin/tools/exif.py index acbf3179..50f1aabf 100644 --- a/mediagoblin/tools/exif.py +++ b/mediagoblin/tools/exif.py @@ -14,10 +14,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -import sys -sys.path.append('extlib/exif') - -from EXIF import process_file +from exifread import process_file from exifread.utils import Ratio from mediagoblin.processing import BadMediaFail |