branch | py33 |
changeset 3723 | 99aa837b6703 |
parent 3721 | 0c93dd8ff567 |
child 3781 | df8b57380768 |
--- a/src/reportlab/pdfbase/cidfonts.py Sun Feb 17 12:13:56 2013 +0000 +++ b/src/reportlab/pdfbase/cidfonts.py Tue Apr 30 14:28:14 2013 +0100 @@ -46,7 +46,7 @@ "Converts deeply nested structure to PDFdoc dictionary/array objects" if type(structure) is DictType: newDict = {} - for k, v in list(structure.items()): + for k, v in structure.items(): newDict[k] = structToPDF(v) return pdfdoc.PDFDictionary(newDict) elif type(structure) in (ListType, TupleType):