Skip to content

Commit

Permalink
Update test for SSL generate temporary certificate file for webserver
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanF committed May 21, 2017
1 parent 9563761 commit c569069
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manpki/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from manpki.i18n import *
from manpki.templates import *

import manpki.db
import manpki.api

load_api_modules()

Expand Down
2 changes: 1 addition & 1 deletion manpki/tools/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def build_routes(app):
log.debug(route)
app.add_url_rule(
rule=route.url,
endpoint=route.endpoint.__name__,
endpoint=route.package+"."+route.endpoint.__name__,
view_func=route.endpoint,
methods=[route.method],
defaults=route.defaults
Expand Down

0 comments on commit c569069

Please sign in to comment.