Skip to content

Commit

Permalink
Merge pull request #40 from sebastic/python3-print
Browse files Browse the repository at this point in the history
Add missing parentheses in call to 'print'.
  • Loading branch information
flippmoke committed Jul 31, 2015
2 parents c005502 + 00ea7e2 commit c96e2fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapnik/printing.py
Expand Up @@ -942,7 +942,7 @@ def render_legend(self,m, page_break=False, ctx=None, collumns=1,width=None, hei
try:
sym.avoid_edges=False
except:
print "**** Cant set avoid edges for rule", r.name
print("**** Cant set avoid edges for rule", r.name)
if r.min_scale <= m.scale_denominator() and m.scale_denominator() < r.max_scale:
lerule = r
lerule.min_scale = 0
Expand Down

0 comments on commit c96e2fe

Please sign in to comment.