This commit is contained in:
Kovid Goyal 2008-03-24 03:13:40 +00:00
parent a456d99cfe
commit 49cfa5a3b2
2 changed files with 2 additions and 2 deletions

View File

@ -150,7 +150,7 @@ def process_file(path, options, logger=None):
def option_parser(gui_mode=False):
return _option_parser(usage='''\
any2lrf myfile
any2lrf [options] myfile
Convert any ebook format into LRF. Supported formats are:
LIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a RAR or

View File

@ -118,7 +118,7 @@ def upload_user_manual():
try:
check_call('make clean html')
check_call('ssh castalia rm -rf %s/\\*'%USER_MANUAL)
check_call('scp -r .build/* castalia:%s'%USER_MANUAL)
check_call('scp -r .build/html/* castalia:%s'%USER_MANUAL)
finally:
os.chdir(cwd)