Skip to content

Commit 840ced1

Browse files
author
Xavier Grangier
committed
Merge branch 'release/1.0.25'
2 parents 9e28861 + c583da2 commit 840ced1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

goose/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def shutdown_network(self):
5959
pass
6060

6161
def crawl(self, crawl_candiate):
62-
parsers = self.config.available_parsers
62+
parsers = list(self.config.available_parsers)
6363
parsers.remove(self.config.parser_class)
6464
try:
6565
crawler = Crawler(self.config)

goose/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
limitations under the License.
2222
"""
2323

24-
version_info = (1, 0, 24)
24+
version_info = (1, 0, 25)
2525
__version__ = ".".join(map(str, version_info))

0 commit comments

Comments
 (0)