Fixing typo in comments
authorAlina Quereilhac <alina.quereilhac@inria.fr>
Thu, 13 Feb 2014 09:48:10 +0000 (10:48 +0100)
committerAlina Quereilhac <alina.quereilhac@inria.fr>
Thu, 13 Feb 2014 09:48:10 +0000 (10:48 +0100)
src/nepi/resources/linux/application.py
src/nepi/resources/linux/node.py
src/nepi/util/sshfuncs.py

index d6391a3..6f6efa9 100644 (file)
@@ -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). ",
index cc94daa..029ee8a 100644 (file)
@@ -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 
index c00b494..2853941 100644 (file)
@@ -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>