This commit is contained in:
Kovid Goyal 2010-02-27 12:14:43 -07:00
parent 5bb6b7c818
commit 6eb3cd53e1

View File

@ -102,7 +102,10 @@ def main(args=sys.argv):
main(['calibre']) main(['calibre'])
elif opts.viewer: elif opts.viewer:
from calibre.gui2.viewer.main import main from calibre.gui2.viewer.main import main
main(['ebook-viewer']) vargs = ['ebook-viewer']
if len(args) > 1:
vargs.append(args[-1])
main(vargs)
elif opts.command: elif opts.command:
sys.argv = args[:1] sys.argv = args[:1]
exec opts.command exec opts.command