Relative imports

This commit is contained in:
Stanislaw Pitucha
2014-05-27 17:35:12 +01:00
parent c67c4f358c
commit 8dee2b43bd
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ import os
import time
import uuid
from pecan import conf
from ephemeral_ca import validators
from . import validators
logger = logging.getLogger(__name__)

View File

@@ -1,5 +1,5 @@
from pecan import expose, request, response
from ephemeral_ca import auth, certificate_ops, validators
from .. import auth, certificate_ops, validators
class RootController(object):