Browse Source

wxGUI: remove print statement coming from https://trac.osgeo.org/grass/changeset/67627

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@67701 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 9 years ago
parent
commit
d6ec0ace89
1 changed files with 0 additions and 1 deletions
  1. 0 1
      gui/wxpython/gui_core/widgets.py

+ 0 - 1
gui/wxpython/gui_core/widgets.py

@@ -122,7 +122,6 @@ class NotebookController:
         try:
             self.classObject.InsertPage(self.widget, **kwargs)
         except TypeError, e:  # documentation says 'index', but certain versions of wx require 'n'
-            print e
             kwargs['n'] = kwargs['index']
             del kwargs['index']
             self.classObject.InsertPage(self.widget, **kwargs)