Browse Source

wxGUI/menuform: add extra linesep for interactive input

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@48992 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 13 years ago
parent
commit
8a3381ae4c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/gui_modules/menuform.py

+ 1 - 1
gui/wxpython/gui_modules/menuform.py

@@ -1636,7 +1636,7 @@ class cmdPanel(wx.Panel):
                 
             f = open(filename, "w")
             try:
-                f.write(text)
+                f.write(text + os.linesep)
             finally:
                 f.close()
         else: