Skip to content

Commit 1c0c378

Browse files
Micah CochranMicah Cochran
authored andcommitted
making sure print() works on Python 2.6
1 parent 885fc55 commit 1c0c378

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mpl_toolkits/basemap/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def test():
224224
if VERBOSITY != None:
225225
pkg_vers = package_versions()
226226
print('Basemaps installed package versions:')
227-
print('{}\n'.format(pkg_vers))
227+
print('{0}\n'.format(pkg_vers))
228228

229229
unittest.main()
230230

0 commit comments

Comments
 (0)