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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: multiSSH3
3
- Version: 5.35
3
+ Version: 5.36
4
4
  Summary: Run commands on multiple hosts via SSH
5
5
  Home-page: https://github.com/yufei-pan/multiSSH3
6
6
  Author: Yufei Pan
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: multiSSH3
3
- Version: 5.35
3
+ Version: 5.36
4
4
  Summary: Run commands on multiple hosts via SSH
5
5
  Home-page: https://github.com/yufei-pan/multiSSH3
6
6
  Author: Yufei Pan
@@ -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.35'
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
 
@@ -2,7 +2,7 @@ from setuptools import setup
2
2
 
3
3
  setup(
4
4
  name='multiSSH3',
5
- version='5.35',
5
+ version='5.36',
6
6
  description='Run commands on multiple hosts via SSH',
7
7
  long_description=open('README.md').read(),
8
8
  long_description_content_type='text/markdown',
File without changes
File without changes
File without changes