We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9e28861 + c583da2 commit 840ced1Copy full SHA for 840ced1
goose/__init__.py
@@ -59,7 +59,7 @@ def shutdown_network(self):
59
pass
60
61
def crawl(self, crawl_candiate):
62
- parsers = self.config.available_parsers
+ parsers = list(self.config.available_parsers)
63
parsers.remove(self.config.parser_class)
64
try:
65
crawler = Crawler(self.config)
goose/version.py
@@ -21,5 +21,5 @@
21
limitations under the License.
22
"""
23
24
-version_info = (1, 0, 24)
+version_info = (1, 0, 25)
25
__version__ = ".".join(map(str, version_info))
0 commit comments