Skip to content

Commit

Permalink
Python 3 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Jun 26, 2016
1 parent 4270d92 commit 896cbe7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fabfile/amazon.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def createrds(
)
client = session.client('rds')

print "- Reserving a database"
print("- Reserving a database")
db = client.create_db_instance(
DBName=database_name,
DBInstanceIdentifier=instance_name,
Expand Down
2 changes: 1 addition & 1 deletion fabfile/chef.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def bootstrap():

# Done deal
print(green("Success!"))
print "Visit the app at %s" % env.EC2_HOST
print("Visit the app at %s" % env.EC2_HOST)


@task(task_class=ConfigTask)
Expand Down
2 changes: 1 addition & 1 deletion fabfile/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,5 +207,5 @@ def require_input(prompt, hide=False):
else:
i = raw_input(prompt.strip()+' ')
if not i:
print ' I need this, please.'
print(' I need this, please.')
return i

0 comments on commit 896cbe7

Please sign in to comment.