浏览代码

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 年之前
父节点
当前提交
2a093eafef
共有 1 个文件被更改,包括 0 次插入1 次删除
  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)