diff --git a/flatpages/views.py b/flatpages/views.py
index d805c20..0999d31 100644
--- a/flatpages/views.py
+++ b/flatpages/views.py
@@ -50,7 +50,8 @@ def flatpage(request, path):
                 return render_with_context(request, 'pagenotfound.html', {'path': path})
     else:        
         try:
-            o = open(os.path.normpath(settings.EXPOWEB + path), "rb")
+            filetobeopened = os.path.normpath(settings.EXPOWEB + path)
+            o = open(filetobeopened, "rb")
         except IOError:
             return render_with_context(request, 'pagenotfound.html', {'path': path})
     if path.endswith(".htm") or path.endswith(".html"):
diff --git a/parsers/surveys.py b/parsers/surveys.py
index 0c6eb4b..733cdfa 100644
--- a/parsers/surveys.py
+++ b/parsers/surveys.py
@@ -89,7 +89,7 @@ def listdir(*directories):
 # add survey scans
 def parseSurveyScans(year, logfile=None):
 #    yearFileList = listdir(year.year)
-    yearPath=os.path.join(settings.SURVEY_SCANS, "years", year.year)
+    yearPath=os.path.join(settings.SURVEY_SCANS, year.year)
     yearFileList=os.listdir(yearPath)
     print yearFileList
     for surveyFolder in yearFileList: