Skip to content

Commit

Permalink
fixed bug for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickbcullen committed Mar 28, 2018
1 parent 38ef5f4 commit 72c7059
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand All @@ -28,7 +28,7 @@
author="Patrick Cullen and the WaPo platform tools team",
author_email="[email protected]",
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 = []
)
2 changes: 1 addition & 1 deletion tagger/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 72c7059

Please sign in to comment.