Skip to content

Commit

Permalink
Merge pull request sjl#23 from livelazily/master
Browse files Browse the repository at this point in the history
Convert version numbers to strings.
  • Loading branch information
simnalamburt committed Nov 29, 2015
2 parents 0a49033 + 2c85f44 commit 05c101d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/mundo/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ def change_preview_diff(self,before,after):
before_lines = self._get_lines(before)
after_lines = self._get_lines(after)

before_name = before.n or 'Original'
before_name = str(before.n or 'Original')
before_time = before.time and self._fmt_time(before.time) or ''
after_name = after.n or 'Original'
after_name = str(after.n or 'Original')
after_time = after.time and self._fmt_time(after.time) or ''

util._undo_to(self.current())
Expand Down

0 comments on commit 05c101d

Please sign in to comment.