Ignore:
Timestamp:
Dec 18, 2011, 11:31:27 PM (12 years ago)
Author:
Jessica B. Hamrick <jhamrick@…>
Branches:
no-cups
Children:
0ede474
Parents:
b2e077a
git-author:
Jessica B. Hamrick <jhamrick@…> (12/18/11 23:31:27)
git-committer:
Jessica B. Hamrick <jhamrick@…> (12/18/11 23:31:27)
Message:

Using logging, not print statements; move skeleton handler functions into the correct class in server/requests.py

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/lib/gutenbach/ipp/request.py

    rd04a689 r9eeab06  
    238238
    239239    def __repr__(self):
    240         return '<IPPRequest (version=%r, operation_id=%x, request_id=%r, attribute_groups=%r)>' % (self.version, self.operation_id, self.request_id, self.attribute_groups)
     240        val = '<IPPRequest (version=%r, ' % self.version
     241        val += 'operation_id=%x, ' % self.operation_id
     242        val += 'request_id=%r, ' % self.request_id
     243        val += 'attribute_groups=%r)>' % self.attribute_groups
     244        return val
Note: See TracChangeset for help on using the changeset viewer.