Browse Source

Claryfing message when to filename already exists

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@67946 15284696-431f-4ddb-bdfa-cd5b030d7da7
Moritz Lennert 9 years ago
parent
commit
4739d7000b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      general/g.copy/main.c

+ 1 - 1
general/g.copy/main.c

@@ -73,7 +73,7 @@ int main(int argc, char *argv[])
 		continue;
 	    }
 	    if (M_find(n, to, G_mapset()) && !(module->overwrite)) {
-		G_warning(_("<%s> already exists"), to);
+		G_warning(_("<%s> already exists. File not copied."), to);
 		continue;
 	    }
 	    if (G_legal_filename(to) < 0) {