blob: 0bd6befb509833d10f2cf0db8eeb4ad536432fad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
from .config import APP_BASE_NAME, APP_PREFIX, BRANDED_BUILD, BRANDED_OPTS
def get_name():
if BRANDED_BUILD is True:
return APP_PREFIX + BRANDED_OPTS.get('short_name', 'name_unknown')
else:
return APP_BASE_NAME
def get_shortname():
if BRANDED_BUILD is True:
return BRANDED_OPTS.get('short_name', 'name_unknown')
__all__ = ['get_name']
|