Mercurial > fife-parpg
changeset 274:cf77afb273c4
Fixed a small bug in getUserDataDirectory
author | cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Tue, 16 Jun 2009 17:11:38 +0000 |
parents | 815354ba295e |
children | 8a9cab8f8868 |
files | engine/extensions/fife_utils.py |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/engine/extensions/fife_utils.py Tue Jun 16 14:24:26 2009 +0000 +++ b/engine/extensions/fife_utils.py Tue Jun 16 17:11:38 2009 +0000 @@ -33,7 +33,7 @@ See: Brian Vanderburg II @ http://mail.python.org/pipermail/python-list/2008-May/660779.html """ - dir = "" + dir = None # WINDOWS if os.name == "nt": @@ -73,6 +73,4 @@ if not os.path.isdir(dir): os.makedirs(dir) - print dir - return dir