diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-06-02 15:16:33 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-06-02 15:16:33 (GMT) |
commit | c8162900594c39e4963979ba3b428dbad8cb6cb5 (patch) | |
tree | 29ab6e1b4f6dfc36122ed5017608b4f237879333 /Doc | |
parent | b4386d36f1aeb709939a85bf25d129a550ce4971 (diff) | |
download | cpython-c8162900594c39e4963979ba3b428dbad8cb6cb5.zip cpython-c8162900594c39e4963979ba3b428dbad8cb6cb5.tar.gz cpython-c8162900594c39e4963979ba3b428dbad8cb6cb5.tar.bz2 |
Issue #14814: use print() function
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/ipaddress.rst | 2 |
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) |