diff options
| author | Ed Henderson <ed@sharpertool.com> | 2016-06-02 12:56:13 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-06-03 11:44:34 -0400 |
| commit | 4a4d7f980e2a66756e1e424f7648dcd28ff765b7 (patch) | |
| tree | 3bb4acb494a41b3ef9ec59b9ab5670cbc46ff9ac /docs/ref/contrib/gis/tutorial.txt | |
| parent | 38575b007a722d6af510ea46d46393a4cda9ca29 (diff) | |
Fixed #26021 -- Applied hanging indentation to docs.
Diffstat (limited to 'docs/ref/contrib/gis/tutorial.txt')
| -rw-r--r-- | docs/ref/contrib/gis/tutorial.txt | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/docs/ref/contrib/gis/tutorial.txt b/docs/ref/contrib/gis/tutorial.txt index 8f597df9fb..5d753a327e 100644 --- a/docs/ref/contrib/gis/tutorial.txt +++ b/docs/ref/contrib/gis/tutorial.txt @@ -452,12 +452,15 @@ with the following code:: 'mpoly' : 'MULTIPOLYGON', } - world_shp = os.path.abspath(os.path.join(os.path.dirname(__file__), 'data', 'TM_WORLD_BORDERS-0.3.shp')) + world_shp = os.path.abspath( + os.path.join(os.path.dirname(__file__), 'data', 'TM_WORLD_BORDERS-0.3.shp'), + ) def run(verbose=True): - lm = LayerMapping(WorldBorder, world_shp, world_mapping, - transform=False, encoding='iso-8859-1') - + lm = LayerMapping( + WorldBorder, world_shp, world_mapping, + transform=False, encoding='iso-8859-1', + ) lm.save(strict=True, verbose=verbose) A few notes about what's going on: |
