You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Copyright (c) 2019, Substratum LLC (https://substratum.net) and/or its affiliates. All rights reserved.
from __future__ import print_function
import os
from command import Command, SelectCommand
def name():
return 'finish'
def command():
return Command(name(), _finish_test, "Prompts for destination dir(should not exist), `stop`(all) then download logs to dst dir for all running instances")
def _finish_test():
prompt = True
dst_dir = ""
while prompt:
dst_dir = raw_input("\tPlease enter a new directory name for the logs (blank line to cancel): ").strip()