From 6fa80446254165ecba92344fd451a44da23230ac Mon Sep 17 00:00:00 2001
From: Thomas Maddox <thomas.maddox@RACKSPACE.com>
Date: Mon, 29 Apr 2013 13:21:07 -0500
Subject: [PATCH] last expanduser removal

---
 settings.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/settings.py b/settings.py
index 60f5878..bdf7af3 100644
--- a/settings.py
+++ b/settings.py
@@ -19,7 +19,7 @@ except ImportError:
     db_username = os.environ['STACKTACH_DB_USERNAME']
     db_password = os.environ['STACKTACH_DB_PASSWORD']
     db_port = os.environ.get('STACKTACH_DB_PORT', "")
-    install_dir = os.path.expanduser(os.environ['STACKTACH_INSTALL_DIR'])
+    install_dir = os.environ['STACKTACH_INSTALL_DIR']
 
 DEBUG = False
 TEMPLATE_DEBUG = DEBUG