Commit 128682f6 authored by Ivan Tyagov's avatar Ivan Tyagov

Remove log.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@21029 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f0e8d337
...@@ -952,7 +952,7 @@ class Document(PermanentURLMixIn, XMLObject, UrlMixIn, ConversionCacheMixin, Sna ...@@ -952,7 +952,7 @@ class Document(PermanentURLMixIn, XMLObject, UrlMixIn, ConversionCacheMixin, Sna
# shares the same coordinates # shares the same coordinates
document_list = list(document_list) document_list = list(document_list)
document_list.sort(lambda x,y: cmp(x.getId(), y.getId() )) document_list.sort(lambda x,y: cmp(x.getId(), y.getId() ))
LOG('[DMS] Existing documents for %s' %self.getSourceReference(), INFO, len(document_list)) #LOG('[DMS] Existing documents for %s' %self.getSourceReference(), INFO, len(document_list))
for o in document_list: for o in document_list:
if o.getRelativeUrl() != self.getRelativeUrl() and\ if o.getRelativeUrl() != self.getRelativeUrl() and\
o.getVersion() == self.getVersion() and\ o.getVersion() == self.getVersion() and\
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment