Skip to content

Commit

Permalink
Merge pull request #6 from Drarok/feature/fix-deprecation
Browse files Browse the repository at this point in the history
Fix deprecation warnings
  • Loading branch information
pablohoffman committed Jan 20, 2014
2 parents 0d875f1 + eb6a8b4 commit 15b61a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.pyc
4 changes: 2 additions & 2 deletions dirbot/spiders/dmoz.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from scrapy.spider import BaseSpider
from scrapy.spider import Spider
from scrapy.selector import HtmlXPathSelector

from dirbot.items import Website


class DmozSpider(BaseSpider):
class DmozSpider(Spider):
name = "dmoz"
allowed_domains = ["dmoz.org"]
start_urls = [
Expand Down

0 comments on commit 15b61a8

Please sign in to comment.