File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,12 @@ All notable changes to this project will be documented in this file.
66The format is based on http://keepachangelog.com/en/1.0.0/[Keep a Changelog]
77and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioning].
88
9- // == https://github.com/robotframework/RIDE[Unreleased]
9+ == https://github.com/robotframework/RIDE[Unreleased]
10+
11+ == Fixed
12+
13+ -- Fixed missing newlines in sections separation
14+
1015
1116== https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.0.rst[2.0] - 2023-03-01
1217
Original file line number Diff line number Diff line change @@ -58,9 +58,8 @@ def write(self, datafile):
5858 def _write_table (self , table , is_last ):
5959 self ._write_header (table )
6060 self ._write_rows (self ._formatter .format_table (table ))
61- # if not is_last:
62- # print(f"DEBUG: writing table {self._formatter.format_header(table)}")
63- # self._write_empty_row(table)
61+ if not is_last : # DEBUG: make this configurable
62+ self ._write_empty_row (table )
6463
6564 def _write_header (self , table ):
6665 self ._write_row (self ._formatter .format_header (table ))
Original file line number Diff line number Diff line change 1414# limitations under the License.
1515#
1616# Automatically generated by `tasks.py`.
17- VERSION = '2.0.1.dev1 '
17+ VERSION = '2.0.1.dev2 '
1818
You can’t perform that action at this time.
0 commit comments