remove webmaster field from localdb

git-svn-id: svn://svn.berlios.de/gpodder/branches/gpodder-thp-200708@381 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2007-08-25 15:24:16 +00:00
parent cc84369262
commit 02d190db99
2 changed files with 0 additions and 3 deletions

View File

@ -100,8 +100,6 @@ class readLocalDB( DefaultHandler):
self.channel.pubDate = self.current_element_data
if name == "copyright":
self.channel.copyright = self.current_element_data
if name == "webMaster":
self.channel.webMaster = self.current_element_data
if self.current_item != None:
if name == "title":

View File

@ -47,7 +47,6 @@ class writeLocalDB( object):
self.ofile.write( '<title>'+saxutils.escape(channel.title)+'</title>'+"\n")
self.ofile.write( '<description><![CDATA['+channel.description+']]></description>'+"\n")
self.ofile.write( '<link>'+channel.link+'</link>'+"\n")
self.ofile.write( '<webMaster>'+channel.webMaster+'</webMaster>'+"\n")
self.writeMetadata( channel)
for item in channel: