From 9a1ef15a5791b8e8b2f3b57db475697f77233a86 Mon Sep 17 00:00:00 2001 From: Alina Quereilhac <alina.quereilhac@inria.fr> Date: Thu, 13 Feb 2014 10:48:10 +0100 Subject: [PATCH] Fixing typo in comments --- src/nepi/resources/linux/application.py | 2 +- src/nepi/resources/linux/node.py | 2 +- src/nepi/util/sshfuncs.py | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/nepi/resources/linux/application.py b/src/nepi/resources/linux/application.py index d6391a32..6f6efa93 100644 --- a/src/nepi/resources/linux/application.py +++ b/src/nepi/resources/linux/application.py @@ -101,7 +101,7 @@ class LinuxApplication(ResourceManager): "Space-separated list of packages required to run the application", flags = Flags.ExecReadOnly) sources = Attribute("sources", - "Colon-separated list of regular files to be uploaded to ${SRC} " + "semi-colon separated list of regular files to be uploaded to ${SRC} " "directory prior to building. Archives won't be expanded automatically. " "Sources are globally available for all experiments unless " "cleanHome is set to True (This will delete all sources). ", diff --git a/src/nepi/resources/linux/node.py b/src/nepi/resources/linux/node.py index cc94daa8..029ee8ad 100644 --- a/src/nepi/resources/linux/node.py +++ b/src/nepi/resources/linux/node.py @@ -660,7 +660,7 @@ class LinuxNode(ResourceManager): src string with the content to copy. Can be: - plain text - a string with the path to a local file - - a string with a colon-separeted list of local files + - a string with a semi-colon separeted list of local files - a string with a local directory dst string with destination path on the remote host (remote is diff --git a/src/nepi/util/sshfuncs.py b/src/nepi/util/sshfuncs.py index c00b494d..28539419 100644 --- a/src/nepi/util/sshfuncs.py +++ b/src/nepi/util/sshfuncs.py @@ -357,7 +357,8 @@ def rcopy(source, dest, Source can be a list of files to copy to a single destination, (in which case it is advised that the destination be a folder), - a single string or a string list of colon-separeted files. + a single file in a string or a semi-colon separated list of files + in a string. """ # Parse destination as <user>@<server>:<path> -- 2.47.0