Removed unneeded -s option.
This commit is contained in:
parent
8945722173
commit
a48ac22c9b
@ -236,7 +236,7 @@ class CruSSH:
|
|||||||
Config = json.load(open('~/.crusshrc'))
|
Config = json.load(open('~/.crusshrc'))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# init all terminals
|
# init all terminals
|
||||||
for host in hosts:
|
for host in hosts:
|
||||||
terminal = vte.Terminal()
|
terminal = vte.Terminal()
|
||||||
@ -263,9 +263,6 @@ if __name__ == "__main__":
|
|||||||
|
|
||||||
### Parse CLI Args ###
|
### Parse CLI Args ###
|
||||||
parser = argparse.ArgumentParser(description="Connect to multiple servers in parallel.", usage="%(prog)s [OPTIONS] HOST [HOST ...]")
|
parser = argparse.ArgumentParser(description="Connect to multiple servers in parallel.", usage="%(prog)s [OPTIONS] HOST [HOST ...]")
|
||||||
parser.add_argument('-s', '--fontsize', dest='fontsize', type=int, default=10,
|
|
||||||
help="Font size to use. (default=10)")
|
|
||||||
|
|
||||||
(args, hosts) = parser.parse_known_args()
|
(args, hosts) = parser.parse_known_args()
|
||||||
|
|
||||||
if len(hosts) == 0:
|
if len(hosts) == 0:
|
||||||
|
Loading…
Reference in New Issue
Block a user