pdfcolor: Fix Python 2.6 compatibility

pull/129/head
Quentin Pradet 2018-03-06 14:53:11 +04:00
parent 94f3d61bb2
commit 0911703eba
No known key found for this signature in database
GPG Key ID: 89964D54095F813B
1 changed files with 5 additions and 1 deletions

View File

@ -21,7 +21,11 @@ class PDFColorSpace(object):
return '<PDFColorSpace: %s, ncomponents=%d>' % (self.name, self.ncomponents)
PREDEFINED_COLORSPACE = collections.OrderedDict()
if six.PY2:
PREDEFINED_COLORSPACE = {}
else:
PREDEFINED_COLORSPACE = collections.OrderedDict()
for (name, n) in [
('DeviceGray', 1), # default value first
('CalRGB', 3),