We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 90eb512 + c47ea5d commit 8f6228eCopy full SHA for 8f6228e
1 file changed
client/deis.py
@@ -1493,7 +1493,10 @@ def releases_rollback(self, args):
1493
else:
1494
body = {}
1495
url = "/api/apps/{app}/releases/rollback".format(**locals())
1496
- sys.stdout.write('Rolling back to v{version}... '.format(**locals()))
+ if version:
1497
+ sys.stdout.write('Rolling back to v{version}... '.format(**locals()))
1498
+ else:
1499
+ sys.stdout.write('Rolling back one release... ')
1500
sys.stdout.flush()
1501
try:
1502
progress = TextProgress()
0 commit comments