Skip to content

Commit 4ee2a9f

Browse files
author
Christopher Manning
committed
doc/guzzle_sphinx_theme: fix Python 3 print syntax error
1 parent 4961365 commit 4ee2a9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/source/guzzle_sphinx_theme/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def create_sitemap(app, exception):
3434
return
3535

3636
filename = app.outdir + "/sitemap.xml"
37-
print "Generating sitemap.xml in %s" % filename
37+
print("Generating sitemap.xml in %s" % filename)
3838

3939
root = ET.Element("urlset")
4040
root.set("xmlns", "http://www.sitemaps.org/schemas/sitemap/0.9")

0 commit comments

Comments
 (0)