Document static_folder
This commit is contained in:
parent
beec47a7cc
commit
bc4c1777e9
1 changed files with 3 additions and 1 deletions
|
|
@ -798,7 +798,9 @@ class _PackageBoundObject(object):
|
||||||
return os.path.join(self.root_path, self._static_folder)
|
return os.path.join(self.root_path, self._static_folder)
|
||||||
def _set_static_folder(self, value):
|
def _set_static_folder(self, value):
|
||||||
self._static_folder = value
|
self._static_folder = value
|
||||||
static_folder = property(_get_static_folder, _set_static_folder)
|
static_folder = property(_get_static_folder, _set_static_folder, doc='''
|
||||||
|
The absolute path to the configured static folder.
|
||||||
|
''')
|
||||||
del _get_static_folder, _set_static_folder
|
del _get_static_folder, _set_static_folder
|
||||||
|
|
||||||
def _get_static_url_path(self):
|
def _get_static_url_path(self):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue