From 72c7059a18dd5d8f0a33034542c9598903c6537d Mon Sep 17 00:00:00 2001 From: Patrick Cullen Date: Wed, 28 Mar 2018 14:07:12 -0400 Subject: [PATCH] fixed bug for python3 --- setup.py | 4 ++-- tagger/cli.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 7555532..e77dcc7 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='aws-tagger', - version='0.6.1', + version='0.6.2', packages=find_packages(), include_package_data=True, install_requires=[ @@ -28,7 +28,7 @@ author="Patrick Cullen and the WaPo platform tools team", author_email="opensource@washingtonpost.com", url="https://github.com/washingtonpost/aws-tagger", - download_url = "https://github.com/washingtonpost/aws-tagger/tarball/v0.6.1", + download_url = "https://github.com/washingtonpost/aws-tagger/tarball/v0.6.2", keywords = ['tag', 'tagger', 'tagging', 'aws'], classifiers = [] ) diff --git a/tagger/cli.py b/tagger/cli.py index f6fc449..08420cb 100644 --- a/tagger/cli.py +++ b/tagger/cli.py @@ -15,7 +15,7 @@ @click.option('--csv', help='CSV file to read data from.') def cli(dryrun, verbose, region, role, resource, tag, csv): if csv and (len(resource) > 0 or len(tag) > 0): - print "Cannot use --resource or --tag with --csv option" + print("Cannot use --resource or --tag with --csv option") sys.exit(1) if csv: tagger = CSVResourceTagger(dryrun, verbose, role, region, tag_volumes=True)