Skip to content

Commit

Permalink
Change prints to use the function call (py3)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwilcox committed Apr 11, 2016
1 parent 4136dd5 commit 251b87d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/en/index.rst
Expand Up @@ -319,8 +319,8 @@ Search for bird data:
>>> csw.results
{'matches': 101, 'nextrecord': 21, 'returned': 20}
>>> for rec in csw.records:
... print csw.records[rec].title
...
... print(csw.records[rec].title)
...
ALLSPECIES
NatureServe Canada References
Bird Studies Canada - BirdMap WMS
Expand Down
4 changes: 2 additions & 2 deletions tests/doctests/sos_20_52N_demo.txt
Expand Up @@ -3,8 +3,8 @@
>>> from owslib.sos import SensorObservationService
>>> service = SensorObservationService('http://sensorweb.demo.52north.org/52n-sos-webapp/sos/kvp',version='2.0.0')
>>> for content in service.contents:
... print content
...
... print(content)
...
test1
http://www.52north.org/test/offering/8
http://www.52north.org/test/offering/9
Expand Down
4 changes: 2 additions & 2 deletions tests/doctests/sos_20_52n_geoviqua.txt
Expand Up @@ -7,8 +7,8 @@
>>> service = SensorObservationService('http://geoviqua.dev.52north.org/SOS-Q/sos/kvp',version='2.0.0')

>>> for content in service.contents:
... print content
...
... print(content)
...
http://www.52north.org/test/offering/9
http://kli.uni-muenster.de/stations/rks/observations
http://geoviqua.dev.52north.org/procedures/ws2500
Expand Down

0 comments on commit 251b87d

Please sign in to comment.