Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Moving around contents of CherryPyWSGIServer folder and reallighning …
…import statements for new structure.
  • Loading branch information
dvdotsenko committed Jan 27, 2011
1 parent 528996c commit 6a0d1f5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cherrypy
Submodule cherrypy updated from 405315 to c02d76
2 changes: 1 addition & 1 deletion examples/windows_service/git_http_backend_winservice.py
Expand Up @@ -30,7 +30,7 @@
sys.path.append(os.path.abspath("."))

import git_http_backend
from cherrypy import wsgiserver
import cherrypy as wsgiserver

class GitSmartHTTPServer(win32serviceutil.ServiceFramework):
# class GitSmartHTTPServer(object):
Expand Down
2 changes: 1 addition & 1 deletion git_http_backend.py
Expand Up @@ -839,7 +839,7 @@ def assemble_WSGI_git_app(*args, **kw):
)

# default Python's WSGI server. Replace with your choice of WSGI server
from cherrypy import wsgiserver
import cherrypy as wsgiserver
httpd = wsgiserver.CherryPyWSGIServer(('0.0.0.0',int(command_options['port'])),app)

if command_options['uri_marker']:
Expand Down
2 changes: 1 addition & 1 deletion test_git_http_backend.py
Expand Up @@ -14,7 +14,7 @@
import urllib as urlopenlib

import git_http_backend
from cherrypy import wsgiserver
import cherrypy as wsgiserver

if sys.platform == 'cli':
import subprocessio.subprocessio_ironpython as subprocess
Expand Down

0 comments on commit 6a0d1f5

Please sign in to comment.