Skip to content

Commit

Permalink
handle new table row as newline
Browse files Browse the repository at this point in the history
  • Loading branch information
ayal committed Jun 18, 2013
1 parent 0208d1c commit 42b701f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pyth/plugins/rtf15/reader.py
Expand Up @@ -590,6 +590,9 @@ def handle_rdblquote(self):
def handle_tab(self):
self.content.append(u'\t')

def handle_trowd(self):
self.content.append(u'\n')

def handle_field(self):
def finalize():
if len(self.content) != 2:
Expand Down

0 comments on commit 42b701f

Please sign in to comment.