Skip to content

Commit

Permalink
Merge pull request #25 from eddyp/next
Browse files Browse the repository at this point in the history
typo fix
  • Loading branch information
Sridhar Ratnakumar committed Mar 21, 2013
2 parents 38b01af + 6ef952c commit 97ca882
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appdirs.py
Expand Up @@ -460,12 +460,12 @@ def _get_win_folder_with_ctypes(csidl_name):
"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)))
Expand Down

0 comments on commit 97ca882

Please sign in to comment.