This commit is contained in:
Kovid Goyal 2008-12-12 12:56:56 -08:00
parent bc87a806a5
commit 08038fb341

View File

@ -240,7 +240,7 @@ If not, head over to <a href="http://calibre.kovidgoyal.net/wiki/Development#Tra
return 'download.html', data, None return 'download.html', data, None
LINUX_INSTALLER = ''' LINUX_INSTALLER = r'''
import sys, os, shutil, tarfile, subprocess, tempfile, urllib2, re, stat import sys, os, shutil, tarfile, subprocess, tempfile, urllib2, re, stat
MOBILEREAD='https://dev.mobileread.com/dist/kovid/calibre/' MOBILEREAD='https://dev.mobileread.com/dist/kovid/calibre/'
@ -431,4 +431,4 @@ def main():
pi = os.path.join(destdir, calibre_postinstall) pi = os.path.join(destdir, calibre_postinstall)
subprocess.call('pi', shell=True) subprocess.call('pi', shell=True)
return 0 return 0
''' '''