multiSSH3 5.35__tar.gz → 5.36__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of multiSSH3 might be problematic. Click here for more details.
- {multissh3-5.35 → multissh3-5.36}/PKG-INFO +1 -1
- {multissh3-5.35 → multissh3-5.36}/multiSSH3.egg-info/PKG-INFO +1 -1
- {multissh3-5.35 → multissh3-5.36}/multiSSH3.py +4 -2
- {multissh3-5.35 → multissh3-5.36}/setup.py +1 -1
- {multissh3-5.35 → multissh3-5.36}/LICENSE +0 -0
- {multissh3-5.35 → multissh3-5.36}/README.md +0 -0
- {multissh3-5.35 → multissh3-5.36}/multiSSH3.egg-info/SOURCES.txt +0 -0
- {multissh3-5.35 → multissh3-5.36}/multiSSH3.egg-info/dependency_links.txt +0 -0
- {multissh3-5.35 → multissh3-5.36}/multiSSH3.egg-info/entry_points.txt +0 -0
- {multissh3-5.35 → multissh3-5.36}/multiSSH3.egg-info/requires.txt +0 -0
- {multissh3-5.35 → multissh3-5.36}/multiSSH3.egg-info/top_level.txt +0 -0
- {multissh3-5.35 → multissh3-5.36}/setup.cfg +0 -0
|
@@ -37,7 +37,7 @@ except AttributeError:
|
|
|
37
37
|
# If neither is available, use a dummy decorator
|
|
38
38
|
def cache_decorator(func):
|
|
39
39
|
return func
|
|
40
|
-
version = '5.
|
|
40
|
+
version = '5.36'
|
|
41
41
|
VERSION = version
|
|
42
42
|
|
|
43
43
|
CONFIG_FILE = '/etc/multiSSH3.config.json'
|
|
@@ -2000,6 +2000,8 @@ def __generate_display(stdscr, hosts, lineToDisplay = -1,curserPosition = 0, min
|
|
|
2000
2000
|
# we will only update the window if there is new output or the window is not fully printed
|
|
2001
2001
|
if new_configured or host.printedLines < len(host.output):
|
|
2002
2002
|
try:
|
|
2003
|
+
if new_configured:
|
|
2004
|
+
host.printedLines = 0
|
|
2003
2005
|
#host_window.clear()
|
|
2004
2006
|
# we will try to center the name of the host with ┼ at the beginning and end and ─ in between
|
|
2005
2007
|
#linePrintOut = f'┼{(host.name+":["+host.command+"]")[:host_window_width - 2].center(host_window_width - 1, "─")}'.replace('\n', ' ').replace('\r', ' ').strip()
|
|
@@ -2124,7 +2126,7 @@ def curses_print(stdscr, hosts, threads, min_char_len = DEFAULT_CURSES_MINIMUM_C
|
|
|
2124
2126
|
stdscr.refresh()
|
|
2125
2127
|
except:
|
|
2126
2128
|
pass
|
|
2127
|
-
params = params[:5]
|
|
2129
|
+
params = params[:5] + ('new config',)
|
|
2128
2130
|
time.sleep(0.01)
|
|
2129
2131
|
#time.sleep(0.25)
|
|
2130
2132
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|