docs typo fix
This commit is contained in:
parent
7ae87629bf
commit
b4019f31d1
2 changed files with 2 additions and 2 deletions
|
@ -383,7 +383,7 @@ class ConfigFile:
|
||||||
|
|
||||||
class Main:
|
class Main:
|
||||||
default_features = {
|
default_features = {
|
||||||
"config_file": (False, "Maintains and uses a config file in the XDG config directory (usually ~/config/appname)."),
|
"config_file": (False, "Maintains and uses a config file in the XDG config directory (usually ~/.config/appname)."),
|
||||||
"auto_add_help": (True, "Generates the program's help and state view."),
|
"auto_add_help": (True, "Generates the program's help and state view."),
|
||||||
"handle_exceptions": (True, "Displays human-readable stack traces when unhandled exceptions are raised.")
|
"handle_exceptions": (True, "Displays human-readable stack traces when unhandled exceptions are raised.")
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,5 +4,5 @@
|
||||||
major = 1 # VERSION_MAJOR_IDENTIFIER
|
major = 1 # VERSION_MAJOR_IDENTIFIER
|
||||||
minor = 99 # VERSION_MINOR_IDENTIFIER
|
minor = 99 # VERSION_MINOR_IDENTIFIER
|
||||||
# VERSION_LAST_MM 1.99
|
# VERSION_LAST_MM 1.99
|
||||||
patch = 5 # VERSION_PATCH_IDENTIFIER
|
patch = 6 # VERSION_PATCH_IDENTIFIER
|
||||||
str = ".".join(str(v) for v in (major, minor, patch))
|
str = ".".join(str(v) for v in (major, minor, patch))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue