aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2023-04-20 21:39:35 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2023-04-20 21:41:12 +0300
commitaa1ec62ac69d2f89a9c3a5fdc5b40d5cff2c2c99 (patch)
treedd4073803ad95449509ab8bc0ec2f98bc6b2f042
parentstart work on 0.12.21 (diff)
downloadpkgcore-aa1ec62ac69d2f89a9c3a5fdc5b40d5cff2c2c99.tar.gz
pkgcore-aa1ec62ac69d2f89a9c3a5fdc5b40d5cff2c2c99.tar.bz2
pkgcore-aa1ec62ac69d2f89a9c3a5fdc5b40d5cff2c2c99.zip
pytest.plugin: blank line after EAPI declare in create_ebuild
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
-rw-r--r--src/pkgcore/pytest/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkgcore/pytest/plugin.py b/src/pkgcore/pytest/plugin.py
index 142292bf..6578050e 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')