Skip to content

Commit

Permalink
Merge pull request #366 from micahcochran/fio-env-gdal-ver
Browse files Browse the repository at this point in the history
Add --gdal-version command line option to fio
  • Loading branch information
sgillies committed Jul 5, 2016
2 parents f3cdeb5 + a42472d commit 4f1c15a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fiona/fio/main.py
Expand Up @@ -12,6 +12,7 @@
from click_plugins import with_plugins
from cligj import verbose_opt, quiet_opt

import fiona
from fiona import __version__ as fio_version


Expand All @@ -26,6 +27,9 @@ def configure_logging(verbosity):
@verbose_opt
@quiet_opt
@click.version_option(fio_version)
@click.version_option(fiona.__gdal_version__, '--gdal-version',
prog_name='GDAL')
@click.version_option(sys.version, '--python-version', prog_name='Python')
@click.pass_context
def main_group(ctx, verbose, quiet):

Expand Down

0 comments on commit 4f1c15a

Please sign in to comment.