Skip to content

Commit

Permalink
Version 1.11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bsongis committed May 12, 2017
1 parent f3a6075 commit 837084a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion gertrude.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ import sys
import wx
import __builtin__

sys.stdout = codecs.getwriter('utf8')(sys.stdout)
if sys.executable.endswith("pythonw.exe"):
logfile = file("gertrude.log", "a")
sys.stdout = codecs.getwriter('utf8')(logfile)
sys.stderr = codecs.getwriter('utf8')(logfile)


from startdialog import StartDialog

Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# You should have received a copy of the GNU General Public License
# along with Gertrude; if not, see <http://www.gnu.org/licenses/>.

VERSION = '1.11.3'
VERSION = '1.11.4'

0 comments on commit 837084a

Please sign in to comment.