devtools: print fakeweb listening URL

Show the user the full URL to paste into the browser.
This commit is contained in:
Ken Dreyer 2021-11-22 12:24:30 -05:00 committed by Tomas Kopecek
parent 12f52aa0a2
commit 4a440297ef

View file

@ -124,7 +124,7 @@ def application(environ, start_response):
def main():
# koji.add_file_logger('koji', 'fakeweb.log')
httpd = make_server('', 8000, application)
print("Serving on port 8000...")
print("Serving kojiweb on http://localhost:8000 ...")
httpd.serve_forever()
if __name__ == '__main__':