Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 00a7a22

Browse files
committed
Fix PEP-8 complaints
1 parent 2a52002 commit 00a7a22

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

autospec/tarball.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,11 +511,12 @@ def prepare_and_extract(extract_cmd):
511511

512512

513513
def write_makefile(name, url, archives):
514+
"""Write the package makefile."""
514515
makefile_path = os.path.join(build.download_path, "Makefile")
515516
if not os.path.exists(makefile_path):
516517
write_out(makefile_path,
517-
"PKG_NAME := %s\nURL = %s\nARCHIVES = %s\n\ninclude ../common/Makefile.common\n"
518-
% (name, url, ' '.join(archives)))
518+
"PKG_NAME := %s\nURL = %s\nARCHIVES = %s\n\ninclude ../common/Makefile.common\n"
519+
% (name, url, ' '.join(archives)))
519520

520521

521522
def process_archives(archives):

0 commit comments

Comments
 (0)