This commit is contained in:
Kovid Goyal 2008-03-11 08:16:44 +00:00
parent 6c7492b1ae
commit dc3e3fbd18
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ def option_parser():
parser.add_option('-u', '--url', dest='url', default=None, parser.add_option('-u', '--url', dest='url', default=None,
help='The URL to download. You only need to specify this if you are not specifying a website_profile.') help='The URL to download. You only need to specify this if you are not specifying a website_profile.')
parser.add_option('--user-profile', default=None, parser.add_option('--user-profile', default=None,
help='Path to a python file containing a user created profile. For help visit http://libprs500.kovidgoyal.net/wiki/UserProfiles') help='Path to a python file containing a user created profile. For help visit http://%s.kovidgoyal.net/wiki/UserProfiles'%__appname__)
parser.add_option('--username', dest='username', default=None, parser.add_option('--username', dest='username', default=None,
help='Specify the username to be used while downloading. Only used if the profile supports it.') help='Specify the username to be used while downloading. Only used if the profile supports it.')
parser.add_option('--password', dest='password', default=None, parser.add_option('--password', dest='password', default=None,

View File

@ -14,7 +14,7 @@
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
""" """
Provides metadata editing support for PDF and RTF files. For LRF metadata, use Provides metadata editing support for PDF and RTF files. For LRF metadata, use
the L{libprs500.lrf.meta} module. the L{lrf.meta} module.
""" """
__docformat__ = "epytext" __docformat__ = "epytext"
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"