Skip to content

Commit 9ab0de3

Browse files
Recover adding newlines in sections (#2563)
1 parent d15d6b8 commit 9ab0de3

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.adoc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ All notable changes to this project will be documented in this file.
66
The format is based on http://keepachangelog.com/en/1.0.0/[Keep a Changelog]
77
and 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

src/robotide/lib/robot/writer/filewriters.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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))

src/robotide/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
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

0 commit comments

Comments
 (0)