Skip to content
This repository has been archived by the owner on Aug 9, 2019. It is now read-only.

Commit

Permalink
Base downloader now returns instead of print, this way travis test re…
Browse files Browse the repository at this point in the history
…sults don't get dirty.
  • Loading branch information
Felipe Martín committed Mar 20, 2013
1 parent f7462fb commit 7df4a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datCrawl/downloaders.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class Downloader(object):
"Base downloader object"
def get(self, url, **kwargs):
print("I'm a useless downloader :_")
return "I'm a useless downloader :_"


class DefaultDownloader(Downloader):
Expand Down

0 comments on commit 7df4a26

Please sign in to comment.