From 197322b6c4ebd5f69f6b458ff83a9cad25ed39df Mon Sep 17 00:00:00 2001 From: desaster Date: Wed, 18 Nov 2009 21:09:09 +0000 Subject: [PATCH] Fix when running wget without parameters git-svn-id: https://kippo.googlecode.com/svn/trunk@29 951d7100-d841-11de-b865-b3884708a8e2 --- commands/wget.py | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/wget.py b/commands/wget.py index 8e48e01..516892f 100644 --- a/commands/wget.py +++ b/commands/wget.py @@ -44,6 +44,7 @@ class command_wget(HoneyPotCommand): self.writeln('Usage: wget [OPTION]... [URL]...') self.nextLine() self.writeln('Try `wget --help\' for more options.') + self.exit() return urldata = urlparse.urlparse(url)