From 6c647f31616669281976251963cca7f417c6dacc Mon Sep 17 00:00:00 2001 From: Aaron Griffith Date: Sun, 29 Jan 2012 17:33:21 -0500 Subject: [PATCH] texturepath setting now works --- overviewer_core/settingsValidators.py | 1 + 1 file changed, 1 insertion(+) diff --git a/overviewer_core/settingsValidators.py b/overviewer_core/settingsValidators.py index 9163689..3ac8379 100644 --- a/overviewer_core/settingsValidators.py +++ b/overviewer_core/settingsValidators.py @@ -93,6 +93,7 @@ def validateTexturePath(path, **kwargs): # Expand user dir in directories strings path = os.path.expanduser(path) # TODO assert this path exists? + return path def validateBool(b, **kwargs):