GET DATA: Fix punctuation in error message.
[pspp-builds.git] / src / language / data-io / get-data.c
index 05e115a9f560019cfaffcf13d5b97e525e028194..c3e842211dd95ac3bd06262cdeeab97cc0f84b38 100644 (file)
@@ -61,7 +61,7 @@ cmd_get_data (struct lexer *lexer, struct dataset *ds)
   else if (lex_match_id (lexer, "PSQL"))
     return parse_get_psql (lexer, ds);
 
-  msg (SE, _("Unsupported TYPE %s"), lex_tokcstr (lexer));
+  msg (SE, _("Unsupported TYPE %s."), lex_tokcstr (lexer));
   return CMD_FAILURE;
 }