From 806dfa194d7198f56d2ce6b882ca7809550afd27 Mon Sep 17 00:00:00 2001 From: Michel Oosterhof Date: Sun, 26 Oct 2014 07:38:20 +0000 Subject: [PATCH] add support for '-c' option. option has no effect --- kippo/commands/wget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kippo/commands/wget.py b/kippo/commands/wget.py index 2f9cd4c..c561756 100644 --- a/kippo/commands/wget.py +++ b/kippo/commands/wget.py @@ -47,7 +47,7 @@ def splitthousands( s, sep=','): class command_wget(HoneyPotCommand): def start(self): try: - optlist, args = getopt.getopt(self.args, 'O:') + optlist, args = getopt.getopt(self.args, 'cO:') except getopt.GetoptError, err: self.writeln('Unrecognized option') self.exit()