Last active
March 23, 2016 17:18
-
-
Save stajkowski/46662d6e26f51d7efa46 to your computer and use it in GitHub Desktop.
oslo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cfg.StrOpt('api_extensions_path', default="<EDIT>", | |
help=_("The path for API extensions. " | |
"Note that this can be a colon-separated list of paths. " | |
"The __path__ of neutron.extensions is appended to " | |
"this, so if your extensions are in there you don't " | |
"need to specify them here."), | |
sample_default='extensions:/path/to/more/exts:/even/more/exts', | |
required=True), | |
# The path for API extensions. Note that this can be colon-separated list | |
# of paths. The __path__ of neutron.extensions is appended to this, so | |
# if your extensions are in there you don't need to specify them here. | |
# Note: Required option - Example: api_extensions_path = extensions:/path/to/more/exts:/even/more/exts | |
api_extensions_path = <EDIT> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment