commit: aa1ec62ac69d2f89a9c3a5fdc5b40d5cff2c2c99
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 20 18:39:35 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 20 18:41:12 2023 +0000
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgcore.git/commit/?id=aa1ec62a
pytest.plugin: blank line after EAPI declare in create_ebuild
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcore/pytest/plugin.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcore/pytest/plugin.py b/src/pkgcore/pytest/plugin.py
index 142292bf4..6578050e2 100644
--- a/src/pkgcore/pytest/plugin.py
+++ b/src/pkgcore/pytest/plugin.py
@@ -260,7 +260,7 @@ class EbuildRepo:
"""
)
)
- f.write(f'EAPI="{eapi}"\n')
+ f.write(f"EAPI={eapi}\n\n")
f.write(f'DESCRIPTION="{desc}"\n')
f.write(f'HOMEPAGE="{homepage}"\n')
f.write(f'SLOT="{slot}"\n')