File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -162,8 +162,8 @@ def _register_blueprints(self):
162162 raise NoBlueprintException ('No {bp_name} blueprint found' .format (bp_name = b_name ))
163163
164164 def _register_routes (self ):
165- if self ._routes_registered is None :
166- self ._routes_registered = True
165+ if AppFactory ._routes_registered is None :
166+ AppFactory ._routes_registered = True
167167 if self .app .config .get ('VERBOSE' ,False ):
168168 print 'starting routing'
169169 for url_module in self .app .config .get ('URL_MODULES' ,[]):
@@ -180,7 +180,8 @@ def _register_routes(self):
180180 raise NoRouteModuleException ('No {r_name} url module found' .format (r_name = r_name ))
181181 if self .app .config .get ('VERBOSE' ,False ):
182182 print 'Finished registering blueprints and url routes'
183-
183+ else :
184+ print 'skip[ped'
184185
185186 def _setup_routes (self ,routes ):
186187 for route in routes :
Original file line number Diff line number Diff line change 1- VERSION = '0,9,13 '
1+ VERSION = '0,9,14 '
22import os
33from setuptools import setup , find_packages ,findall
44from glob import glob
You can’t perform that action at this time.
0 commit comments