Skip to content

Commit

Permalink
Merge branch 'release/1.0.12'
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Grangier committed Apr 23, 2014
2 parents bad4c8b + e453b8e commit 6430e1d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions goose/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ def crawl(self, crawl_candiate):
return article

def initialize(self):
# we don't need to go further if image extractor or
# local_storage is not set
if not self.config.local_storage_path or \
not self.config.enable_image_fetching:
return
# test if config.local_storage_path
# is a directory
if not os.path.isdir(self.config.local_storage_path):
Expand Down
2 changes: 1 addition & 1 deletion goose/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
limitations under the License.
"""

version_info = (1, 0, 11)
version_info = (1, 0, 12)
__version__ = ".".join(map(str, version_info))

0 comments on commit 6430e1d

Please sign in to comment.