diff --git a/troggle/parsers/logbooks.py b/troggle/parsers/logbooks.py
index e4daa6c73..bb7d009c6 100644
--- a/troggle/parsers/logbooks.py
+++ b/troggle/parsers/logbooks.py
@@ -213,7 +213,8 @@ def Parseloghtml01(year, expedition, txt):
 
         ltriptext = re.sub("</p>", "", triptext)
         ltriptext = re.sub("\s*?\n\s*", " ", ltriptext)
-        ltriptext = re.sub("<p>", "\n\n", ltriptext).strip()
        ltriptext = re.sub("[^\s0-9a-zA-Z\-.,:;'!]", "NONASCII", ltriptext)
+        ltriptext = re.sub("<p>", "\n\n", ltriptext).strip()
+        #ltriptext = re.sub("[^\s0-9a-zA-Z\-.,:;'!]", "NONASCII", ltriptext)
 
         #print ldate, trippeople.strip()
             # could includ the tripid (url link for cross referencing)
diff --git a/troggle/settings.py b/troggle/settings.py
index f6a9703ad..e255c9703 100644
--- a/troggle/settings.py
+++ b/troggle/settings.py
@@ -1,4 +1,4 @@
-from localsettings import *
+from localsettingsserver import *
 # Django settings for troggle2 project.
 
 DEBUG = True