Changeset 7a1c039 for server/lib/ipp/request.py
- Timestamp:
- Mar 10, 2011, 9:54:17 PM (14 years ago)
- Branches:
- no-cups
- Children:
- 01e3017
- Parents:
- 569c377
- git-author:
- Quentin Smith <quentin@…> (03/10/11 21:54:17)
- git-committer:
- Quentin Smith <quentin@…> (03/10/11 21:54:17)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
server/lib/ipp/request.py
r569c377 r7a1c039 2 2 3 3 import sys, struct, logging 4 from ippattributegroup import AttributeGroup5 from ippattribute import Attribute6 from ippvalue import Value7 from ippconstants import *4 from .attributegroup import AttributeGroup 5 from .attribute import Attribute 6 from .value import Value 7 from .constants import AttributeTags 8 8 9 9 # initialize logger 10 logger = logging.getLogger( "ippLogger")10 logger = logging.getLogger(__name__) 11 11 12 12 class Request():
Note: See TracChangeset
for help on using the changeset viewer.