Fix: --offsite-links should be on by default

This commit is contained in:
Ivan Kozik 2015-08-13 12:29:11 +00:00
parent a3f1ff7ed9
commit 291b3e939b
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
__version__ = '0.7.4' __version__ = '0.7.5'

View File

@ -38,7 +38,7 @@ def print_version(ctx, param, value):
'--recursive (default: true) to crawl under last /path/ component ' '--recursive (default: true) to crawl under last /path/ component '
'recursively, or --1 to get just START_URL.') 'recursively, or --1 to get just START_URL.')
@click.option('--offsite-links/--no-offsite-links', default=False, @click.option('--offsite-links/--no-offsite-links', default=True,
help= help=
'--offsite-links (default: true) to grab all links to a depth of 1 ' '--offsite-links (default: true) to grab all links to a depth of 1 '
'on other domains, or --no-offsite-links to disable.') 'on other domains, or --no-offsite-links to disable.')