From: Benoît Pin Date: Sun, 21 Nov 2010 10:55:28 +0000 (+0100) Subject: _current_filename n'existe plus avec zope-2.12. On remlace par son implémentation. X-Git-Url: https://scm.cri.ensmp.fr/git/Photo.git/commitdiff_plain/2a65962fd27e31b65319093b8b4373cc72433431 _current_filename n'existe plus avec zope-2.12. On remlace par son implémentation. --- diff --git a/metadata.py b/metadata.py index 156df58..310392b 100755 --- a/metadata.py +++ b/metadata.py @@ -71,7 +71,7 @@ class Metadata : """returns xmp metadata packet with xmpdump call """ if self.size : - blob_file_path = self.bdata._current_filename() + blob_file_path = self.bdata._p_blob_uncommitted or self.bdata._p_blob_committed dumpcmd = '%s %s' % (XMPDUMP, blob_file_path) p = Popen(dumpcmd, stdout=PIPE, stderr=PIPE, stdin=PIPE, shell=True) xmp, err = p.communicate()