summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2012-06-02 15:16:33 (GMT)
committerSandro Tosi <sandro.tosi@gmail.com>2012-06-02 15:16:33 (GMT)
commitc8162900594c39e4963979ba3b428dbad8cb6cb5 (patch)
tree29ab6e1b4f6dfc36122ed5017608b4f237879333 /Doc/howto
parentb4386d36f1aeb709939a85bf25d129a550ce4971 (diff)
downloadcpython-c8162900594c39e4963979ba3b428dbad8cb6cb5.zip
cpython-c8162900594c39e4963979ba3b428dbad8cb6cb5.tar.gz
cpython-c8162900594c39e4963979ba3b428dbad8cb6cb5.tar.bz2
Issue #14814: use print() function
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/ipaddress.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/ipaddress.rst b/Doc/howto/ipaddress.rst
index ebbf152..f855df8 100644
--- a/Doc/howto/ipaddress.rst
+++ b/Doc/howto/ipaddress.rst
@@ -288,4 +288,4 @@ you can still do the following::
try:
ipaddress.IPv4Address(address)
except ValueError:
- print 'address/netmask is invalid: %s' % address
+ print('address/netmask is invalid:', address)