summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-07-18 02:53:05 -0400
committerChris McDonough <chrism@plope.com>2011-07-18 02:53:05 -0400
commit1fac3ef6ac3d3062c719056a347778074946f3fb (patch)
tree7134a881304e26afb23dacdeadea954d78f88d9e
parent2ce6659c9c3f0cd916cb85f43bd973a53d857a14 (diff)
downloadpyramid-1fac3ef6ac3d3062c719056a347778074946f3fb.tar.gz
pyramid-1fac3ef6ac3d3062c719056a347778074946f3fb.tar.bz2
pyramid-1fac3ef6ac3d3062c719056a347778074946f3fb.zip
move import statement
-rw-r--r--pyramid/paster.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/paster.py b/pyramid/paster.py
index bb499ae8b..3aa6a5f1d 100644
--- a/pyramid/paster.py
+++ b/pyramid/paster.py
@@ -8,6 +8,8 @@ import zope.deprecation
from paste.deploy import loadapp
from paste.script.command import Command
+from pyramid.interfaces import IMultiView
+
from pyramid.scripting import get_root
from pyramid.scripting import prepare
from pyramid.util import DottedNameResolver
@@ -275,8 +277,6 @@ class PRoutesCommand(PCommand):
self.out(fmt % (route.name, route.pattern, view_callable))
-from pyramid.interfaces import IMultiView
-
class PViewsCommand(PCommand):
"""Print, for a given URL, the views that might match. Underneath each
potentially matching route, list the predicates required. Underneath