documentation fix

This commit is contained in:
Kovid Goyal 2006-12-12 05:08:14 +00:00
parent fc5b8a22e6
commit c693c6f900

View File

@ -16,9 +16,10 @@
""" """
This module presents an easy to use interface for getting and setting meta information in LRF files. This module presents an easy to use interface for getting and setting meta information in LRF files.
Just create an L{LRFMetaFile} object and use its properties to get and set meta information. For example: Just create an L{LRFMetaFile} object and use its properties to get and set meta information. For example:
lrf = LRFMetaFile("mybook.lrf")
print lrf.title, lrf.author >>> lrf = LRFMetaFile("mybook.lrf")
lrf.category = "History" >>> print lrf.title, lrf.author
>>> lrf.category = "History"
""" """
import struct, array, zlib, StringIO import struct, array, zlib, StringIO