Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
nchammas committed May 24, 2016
1 parent ded2cf4 commit 319f464
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions flintrock/flintrock.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,15 +629,15 @@ def remove_slaves(
cluster.print()
click.confirm(
text=("Are you sure you want to remove {n} slave{s} from this cluster?"
.format(
n=num_slaves,
s='' if num_slaves == 1 else 's')),
.format(
n=num_slaves,
s='' if num_slaves == 1 else 's')),
abort=True)

print("Removing {n} slave{s}..."
.format(
n=num_slaves,
s='' if num_slaves == 1 else 's'))
.format(
n=num_slaves,
s='' if num_slaves == 1 else 's'))
cluster.remove_slaves(
user=user,
identity_file=identity_file,
Expand Down

0 comments on commit 319f464

Please sign in to comment.