Changeset - 240d54a3091e
[Not reviewed]
default
0 1 0
Mads Kiilerich - 8 years ago 2017-08-12 17:29:58
mads@kiilerich.com
install-iis: remove import of non-existing AbstractInstallCommand

'gearbox -h' would fail to import install--is and complain:

Could not load EntryPoint.parse('install-iis = kallithea.lib.paster_commands.install_iis:Command')

AbstractInstallCommand was a paster thing, not present in gearbox ... but also
no longer used.
1 file changed with 0 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/lib/paster_commands/install_iis.py
Show inline comments
 
@@ -12,25 +12,24 @@
 
# You should have received a copy of the GNU General Public License
 
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
"""
 
kallithea.lib.paster_commands.install_iis
 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 

	
 
IIS installation tools for Kallithea
 
"""
 

	
 

	
 
import os
 
import sys
 
from paste.script.appinstall import AbstractInstallCommand
 

	
 
from kallithea.lib.paster_commands.common import BasePasterCommand
 

	
 

	
 
dispath_py_template = '''\
 
# Created by Kallithea 'gearbox install-iis'
 
import sys
 

	
 
if hasattr(sys, "isapidllhandle"):
 
    import win32traceutil
 

	
 
import isapi_wsgi
0 comments (0 inline, 0 general)