Changeset 556a285
- Timestamp:
- Mar 11, 2011, 1:50:58 PM (14 years ago)
- Branches:
- no-cups
- Children:
- 1176f8b
- Parents:
- 1b9d629
- git-author:
- Quentin Smith <quentin@…> (03/11/11 13:50:58)
- git-committer:
- Quentin Smith <quentin@…> (03/11/11 13:50:58)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
server/lib/ipp/value.py
r94211df r556a285 226 226 # contains the units 227 227 228 packed_value = truct.pack('>iib', self.value)228 packed_value = truct.pack('>iib', *self.value) 229 229 230 230 elif self.value_tag == OctetStringTags.RANGE_OF_INTEGER: … … 233 233 # SIGNED-INTEGER contains the upper bound. 234 234 235 packed_value = struct.pack('>ii', self.value)235 packed_value = struct.pack('>ii', *self.value) 236 236 237 237 elif self.value_tag == OctetStringTags.TEXT_WITH_LANGUAGE or \
Note: See TracChangeset
for help on using the changeset viewer.