GET DATA: Fix punctuation in error message.
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 12 Dec 2010 04:56:15 +0000 (20:56 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 12 Dec 2010 06:17:25 +0000 (22:17 -0800)
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;
 }