summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
authorAdrian Likins <alikins@grimlock.devel.redhat.com>2007-10-12 13:31:09 -0400
committerAdrian Likins <alikins@grimlock.devel.redhat.com>2007-10-12 13:31:09 -0400
commit7e20169c94df803759acb82f6813dc1a297b9fde (patch)
treeca6badb512dcaabad046bdaa384c2bfd9b894470 /func
parent7f47f741e0c1086337b3ef94d01a0028260f74ba (diff)
downloadthird_party-func-7e20169c94df803759acb82f6813dc1a297b9fde.tar.gz
third_party-func-7e20169c94df803759acb82f6813dc1a297b9fde.tar.xz
third_party-func-7e20169c94df803759acb82f6813dc1a297b9fde.zip
what kind of weird name is "rpath", change to "remotepath"
Diffstat (limited to 'func')
-rw-r--r--func/overlord/cmd_modules/copyfile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/func/overlord/cmd_modules/copyfile.py b/func/overlord/cmd_modules/copyfile.py
index 354ab8f..3206a4e 100644
--- a/func/overlord/cmd_modules/copyfile.py
+++ b/func/overlord/cmd_modules/copyfile.py
@@ -34,7 +34,7 @@ class CopyFile(client.command.Command):
def addOptions(self):
self.parser.add_option("-f", "--file", dest="filename",
action="store")
- self.parser.add_option("", "--remotepath", dest="rpath",
+ self.parser.add_option("", "--remotepath", dest="remotepath",
action="store")
self.parser.add_option("", "--force", dest="force",
action="store_true")
@@ -74,6 +74,6 @@ class CopyFile(client.command.Command):
- results = client_obj.run("copyfile", "copyfile", [self.options.rpath, fb,
+ results = client_obj.run("copyfile", "copyfile", [self.options.remotepath, fb,
mode, uid, gid])