Skip to content

Commit

Permalink
Replace print with six.print_
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemacfarlane committed Oct 11, 2014
1 parent 7c42ec5 commit 73a88b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/z3c/rml/dtd.py
Expand Up @@ -13,6 +13,7 @@
##############################################################################
"""Generate a DTD from the code
"""
import six
import zope.schema

from z3c.rml import attr, document, occurence
Expand Down Expand Up @@ -73,4 +74,4 @@ def generate(useWrapper=False):
return text

def main():
print generate()
six.print_(generate())

0 comments on commit 73a88b8

Please sign in to comment.