summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_file_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/extension_file_util.cc')
-rw-r--r--chrome/browser/extensions/extension_file_util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_file_util.cc b/chrome/browser/extensions/extension_file_util.cc
index 1692c67..ac34470 100644
--- a/chrome/browser/extensions/extension_file_util.cc
+++ b/chrome/browser/extensions/extension_file_util.cc
@@ -366,8 +366,8 @@ bool CheckForIllegalFilenames(const FilePath& extension_path,
if (reserved_underscore_names.find(filename) ==
reserved_underscore_names.end()) {
*error = StringPrintf(
- "Cannot load extension with file or directory name %s."
- "Filenames starting with \"_\" are reserved for use by the system",
+ "Cannot load extension with file or directory name %s. "
+ "Filenames starting with \"_\" are reserved for use by the system.",
filename.c_str());
return false;
}