summaryrefslogtreecommitdiff
path: root/appdirs.py
diff options
context:
space:
mode:
authorEddy Petrișor <eddy.petrisor@gmail.com>2013-03-21 23:35:17 +0200
committerEddy Petrișor <eddy.petrisor@gmail.com>2013-03-21 23:35:17 +0200
commit6ef952cb35c4d019ed54ccc505d555c9facd5b46 (patch)
tree467b096c1893dc296330ef8744d61ce2f621296c /appdirs.py
parent38b01afbdeb7e3897c77bd93644325f17e6482a5 (diff)
downloadappdirs-6ef952cb35c4d019ed54ccc505d555c9facd5b46.tar.gz
typo fix
Diffstat (limited to 'appdirs.py')
-rw-r--r--appdirs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/appdirs.py b/appdirs.py
index de4caf1..1d24dd8 100644
--- a/appdirs.py
+++ b/appdirs.py
@@ -460,12 +460,12 @@ if __name__ == "__main__":
"user_config_dir", "site_config_dir",
"user_cache_dir", "user_log_dir")
- print("-- app dirs (without optional 'version')")
+ print("-- app dirs (with optional 'version')")
dirs = AppDirs(appname, appauthor, version="1.0")
for prop in props:
print("%s: %s" % (prop, getattr(dirs, prop)))
- print("\n-- app dirs (with optional 'version')")
+ print("\n-- app dirs (without optional 'version')")
dirs = AppDirs(appname, appauthor)
for prop in props:
print("%s: %s" % (prop, getattr(dirs, prop)))