Skip to content

Commit

Permalink
v1.1.2 - fdebug will write to files in append mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jontsai committed Aug 29, 2020
1 parent 81ee503 commit 35c7378
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.1
1.1.2
2 changes: 1 addition & 1 deletion htk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from .utils import *


__version__ = '1.1.1'
__version__ = '1.1.2'
2 changes: 1 addition & 1 deletion htk/utils/debuggers.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def fdebug(file_path, text):
with open(file_path, 'w') as f:
with open(file_path, 'w+') as f:
f.write(text)


Expand Down

0 comments on commit 35c7378

Please sign in to comment.