diff options
author | Adrian Likins <alikins@grimlock.devel.redhat.com> | 2007-10-12 14:33:28 -0400 |
---|---|---|
committer | Adrian Likins <alikins@grimlock.devel.redhat.com> | 2007-10-12 14:33:28 -0400 |
commit | b4b771c5aced0739eb7a875bf126d21dbdaff06b (patch) | |
tree | 7394a791d31e98b79f3be121976f90c9cdf59701 /func/overlord/cmd_modules/copyfile.py | |
parent | 7e20169c94df803759acb82f6813dc1a297b9fde (diff) | |
download | func-b4b771c5aced0739eb7a875bf126d21dbdaff06b.tar.gz func-b4b771c5aced0739eb7a875bf126d21dbdaff06b.tar.xz func-b4b771c5aced0739eb7a875bf126d21dbdaff06b.zip |
copyfile.py: dont need the parse call here
command.py: move the parse args stuff to before we call
subcommands
func_command.py: include the copyfile classes so we can use them
Diffstat (limited to 'func/overlord/cmd_modules/copyfile.py')
-rw-r--r-- | func/overlord/cmd_modules/copyfile.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/func/overlord/cmd_modules/copyfile.py b/func/overlord/cmd_modules/copyfile.py index 3206a4e..9a6f54d 100644 --- a/func/overlord/cmd_modules/copyfile.py +++ b/func/overlord/cmd_modules/copyfile.py @@ -47,9 +47,6 @@ class CopyFile(client.command.Command): if self.options.port: self.port = self.options.port - def parse(self, argv): - self.argv = argv - return command.Command.parse(self,argv) def do(self, args): self.server_spec = self.parentCommand.server_spec |