Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

Commit

Permalink
added missing field further_reading to about:config
Browse files Browse the repository at this point in the history
  • Loading branch information
majuscule committed Jun 26, 2012
1 parent 07817cb commit d70b2d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions firefox_about_config/parse.py
Expand Up @@ -2,13 +2,14 @@

from BeautifulSoup import BeautifulSoup


class Entry(object):
def __init__(self, name, value, description):
self.name = name
self.value = value
self.description = description
self.url = 'https://github.com/duckduckgo/zeroclickinfo-fathead'

def __str__(self):
fields = [
self.name, # title
Expand All @@ -18,16 +19,15 @@ def __str__(self):
'', # categories
'', # references
'', # see_also
'', # further_reading
'', # external_links
'', # disambiguation
'', # images
self.description, # abstract
self.url # source_url
]
return '%s' % ('\t'.join(fields))

output = '%s' % ('\t'.join(fields))

return output

class Parser(object):
def __init__(self, input='download/About:config_entries'):
Expand Down

0 comments on commit d70b2d1

Please sign in to comment.