summaryrefslogtreecommitdiff
path: root/pecan/decorators.py
diff options
context:
space:
mode:
authorRyan Petrello <lists@ryanpetrello.com>2013-04-30 10:51:16 -0400
committerRyan Petrello <lists@ryanpetrello.com>2013-04-30 10:51:16 -0400
commitd34a71411360270f03b0f1d4ffcc6dffe9b8e00e (patch)
treedf44d9f990d1694586d421b6fd049f47212e68eb /pecan/decorators.py
parent125495a899f984d7a33d7bacb56f3212314ef995 (diff)
downloadpecan-d34a71411360270f03b0f1d4ffcc6dffe9b8e00e.tar.gz
Correct relative imports.
Diffstat (limited to 'pecan/decorators.py')
-rw-r--r--pecan/decorators.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pecan/decorators.py b/pecan/decorators.py
index be27df8..e5afb9f 100644
--- a/pecan/decorators.py
+++ b/pecan/decorators.py
@@ -1,5 +1,6 @@
from inspect import getargspec, getmembers, isclass, ismethod
-from util import _cfg
+
+from .util import _cfg
__all__ = [
'expose', 'transactional', 'accept_noncanonical', 'after_commit',