docs typo fix

This commit is contained in:
Martinez 2016-05-19 14:03:34 +02:00
parent 7ae87629bf
commit b4019f31d1
2 changed files with 2 additions and 2 deletions

View file

@ -383,7 +383,7 @@ class ConfigFile:
class Main:
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."),
"handle_exceptions": (True, "Displays human-readable stack traces when unhandled exceptions are raised.")
}

View file

@ -4,5 +4,5 @@
major = 1 # VERSION_MAJOR_IDENTIFIER
minor = 99 # VERSION_MINOR_IDENTIFIER
# 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))