Parcourir la source

db.in.ogr: fix msg

git-svn-id: https://svn.osgeo.org/grass/grass/branches/releasebranch_7_0@65404 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler il y a 10 ans
Parent
commit
0ef8217488
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      scripts/db.in.ogr/db.in.ogr.py

+ 1 - 1
scripts/db.in.ogr/db.in.ogr.py

@@ -75,7 +75,7 @@ def main():
     for l in s.splitlines():
         if l == output:
             if grass.overwrite():
-                grass.warning(_("Table <%s> already exists and will be and will be overwritten") % output)
+                grass.warning(_("Table <%s> already exists and will be overwritten") % output)
                 grass.write_command('db.execute', input = '-', stdin = "DROP TABLE %s" % output)
                 break
             else: