You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by lm...@apache.org on 2018/07/29 16:49:43 UTC

svn commit: r1836985 - /chemistry/cmislib/branches/py3_compat/src/cmislib/browser/binding.py

Author: lmignon
Date: Sun Jul 29 16:49:43 2018
New Revision: 1836985

URL: http://svn.apache.org/viewvc?rev=1836985&view=rev
Log:
[FIX] BrowserBinding: Properly initialize the BrowserDocument returned by the setContentStream method 

Modified:
    chemistry/cmislib/branches/py3_compat/src/cmislib/browser/binding.py

Modified: chemistry/cmislib/branches/py3_compat/src/cmislib/browser/binding.py
URL: http://svn.apache.org/viewvc/chemistry/cmislib/branches/py3_compat/src/cmislib/browser/binding.py?rev=1836985&r1=1836984&r2=1836985&view=diff
==============================================================================
--- chemistry/cmislib/branches/py3_compat/src/cmislib/browser/binding.py (original)
+++ chemistry/cmislib/branches/py3_compat/src/cmislib/browser/binding.py Sun Jul 29 16:49:43 2018
@@ -1956,7 +1956,7 @@ class BrowserDocument(BrowserCmisObject)
                                                self._cmisClient.password)
 
         # return the result set
-        return BrowserDocument(self._cmisClient, self, data=result)
+        return BrowserDocument(self._cmisClient, self._repository, data=result)
 
     def deleteContentStream(self):