multiSSH3 5.76__tar.gz → 5.77__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.4
2
2
  Name: multiSSH3
3
- Version: 5.76
3
+ Version: 5.77
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.4
2
2
  Name: multiSSH3
3
- Version: 5.76
3
+ Version: 5.77
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
@@ -55,7 +55,7 @@ except AttributeError:
55
55
  # If neither is available, use a dummy decorator
56
56
  def cache_decorator(func):
57
57
  return func
58
- version = '5.76'
58
+ version = '5.77'
59
59
  VERSION = version
60
60
  __version__ = version
61
61
  COMMIT_DATE = '2025-06-25'
@@ -2545,6 +2545,7 @@ def getStrCommand(hosts = DEFAULT_HOSTS,commands = None,oneonone = DEFAULT_ONE_O
2545
2545
  history_file = history_file, env_file = env_file,
2546
2546
  repeat = repeat,interval = interval,
2547
2547
  shortend = shortend)
2548
+ commands = [command.replace('"', '\\"') for command in commands]
2548
2549
  commandStr = '"' + '" "'.join(commands) + '"' if commands else ''
2549
2550
  filePath = os.path.abspath(__file__)
2550
2551
  programName = filePath if filePath else 'mssh'
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes