diff --git a/browser/locales/en-US/chrome/overrides/netError.dtd b/browser/locales/en-US/chrome/overrides/netError.dtd
index b31fb40e196..828d37c7113 100644
--- a/browser/locales/en-US/chrome/overrides/netError.dtd
+++ b/browser/locales/en-US/chrome/overrides/netError.dtd
@@ -170,12 +170,12 @@ be temporary, and you can try again later.
-
+
-You should not add an exception if you are using an internet connection that you do not trust completely or if you are not used to seeing a warning for this server.
diff --git a/build/automation.py.in b/build/automation.py.in
index 2bdb438250c..49ad395b965 100644
--- a/build/automation.py.in
+++ b/build/automation.py.in
@@ -294,7 +294,6 @@ class Automation(object):
# Open database and create table
permDB = sqlite3.connect(os.path.join(profileDir, "permissions.sqlite"))
cursor = permDB.cursor();
- // SQL copied from nsPermissionManager.cpp
cursor.execute("""CREATE TABLE moz_hosts (
id INTEGER PRIMARY KEY,
host TEXT,
diff --git a/docshell/resources/content/netError.xhtml b/docshell/resources/content/netError.xhtml
index de0841abe01..de80ce9dcae 100644
--- a/docshell/resources/content/netError.xhtml
+++ b/docshell/resources/content/netError.xhtml
@@ -369,7 +369,7 @@
error types. -->
diff --git a/dom/locales/en-US/chrome/netErrorApp.dtd b/dom/locales/en-US/chrome/netErrorApp.dtd
index f05fa1d8645..548894afa84 100644
--- a/dom/locales/en-US/chrome/netErrorApp.dtd
+++ b/dom/locales/en-US/chrome/netErrorApp.dtd
@@ -3,7 +3,7 @@
should go into netError.dtd -->
-You should not add an exception if you are using an internet connection that you do not trust completely or if you are not used to seeing a warning for this server.
If you still wish to add an exception for this site, you can do so in your advanced encryption settings.
">
diff --git a/extensions/cookie/nsPermissionManager.cpp b/extensions/cookie/nsPermissionManager.cpp
index 23f0ec3f4dd..3005527b9b4 100644
--- a/extensions/cookie/nsPermissionManager.cpp
+++ b/extensions/cookie/nsPermissionManager.cpp
@@ -343,8 +343,6 @@ nsPermissionManager::CreateTable()
if (NS_FAILED(rv)) return rv;
// create the table
- // SQL also lives in automation.py.in. If you change this SQL change that
- // one too.
return mDBConn->ExecuteSimpleSQL(NS_LITERAL_CSTRING(
"CREATE TABLE moz_hosts ("
" id INTEGER PRIMARY KEY"