summaryrefslogtreecommitdiff
path: root/pecan/commands
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/commands
parent125495a899f984d7a33d7bacb56f3212314ef995 (diff)
downloadpecan-d34a71411360270f03b0f1d4ffcc6dffe9b8e00e.tar.gz
Correct relative imports.
Diffstat (limited to 'pecan/commands')
-rw-r--r--pecan/commands/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pecan/commands/__init__.py b/pecan/commands/__init__.py
index db5aafe..da02464 100644
--- a/pecan/commands/__init__.py
+++ b/pecan/commands/__init__.py
@@ -1,4 +1,4 @@
-from base import CommandRunner, BaseCommand # noqa
-from serve import ServeCommand # noqa
-from shell import ShellCommand # noqa
-from create import CreateCommand # noqa
+from .base import CommandRunner, BaseCommand # noqa
+from .serve import ServeCommand # noqa
+from .shell import ShellCommand # noqa
+from .create import CreateCommand # noqa