unix: Properly print script filename in case of error.

pull/651/head
Paul Sokolovsky 2014-06-03 01:01:39 +03:00
rodzic 8bf8404c15
commit dd0dee3afc
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -355,7 +355,7 @@ int main(int argc, char **argv) {
} else {
char *basedir = realpath(argv[a], NULL);
if (basedir == NULL) {
fprintf(stderr, "%s: can't open file '%s': [Errno %d] ", argv[0], argv[1], errno);
fprintf(stderr, "%s: can't open file '%s': [Errno %d] ", argv[0], argv[a], errno);
perror("");
// CPython exits with 2 in such case
ret = 2;