Browse Source

remove print statement (accidentally introduced in https://trac.osgeo.org/grass/changeset/62622)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@62623 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 10 years ago
parent
commit
2a093eafef
1 changed files with 0 additions and 1 deletions
  1. 0 1
      gui/wxpython/core/utils.py

+ 0 - 1
gui/wxpython/core/utils.py

@@ -48,7 +48,6 @@ def split(s):
         if sys.platform == "win32":
             return shlex.split(s.replace('\\', r'\\'))
         else:
-            print shlex.split(s)
             return shlex.split(s)
     except ValueError as e:
         sys.stderr.write(_("Syntax error: %s") % e)