Skip to content

Commit

Permalink
Removed debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
stroeder committed Dec 12, 2014
1 parent 684e3cb commit 76c05cc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Lib/ldap/controls/pagedresults.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
See http://www.python-ldap.org/ for project details.
$Id: pagedresults.py,v 1.1 2014/12/12 09:59:40 stroeder Exp $
$Id: pagedresults.py,v 1.2 2014/12/12 10:10:23 stroeder Exp $
"""

__all__ = [
Expand Down Expand Up @@ -44,7 +44,6 @@ def encodeControlValue(self):
return encoder.encode(pc)

def decodeControlValue(self,encodedControlValue):
print '***',self.__class__.__module__,self.__class__.__name__
decodedValue,_ = decoder.decode(encodedControlValue,asn1Spec=PagedResultsControlValue())
self.size = int(decodedValue.getComponentByName('size'))
self.cookie = str(decodedValue.getComponentByName('cookie'))
Expand Down

0 comments on commit 76c05cc

Please sign in to comment.