Update gen-apt-config.py

This commit is contained in:
Ward Nakchbandi (Cosmic Fusion) 2024-07-21 14:53:40 +03:00 committed by GitHub
parent 991118384e
commit 0ffe12cc3e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,7 +26,7 @@ for file in srcnames_files:
srcname = line.strip()
srcname_lines.append(srcname)
result = subprocess.run([current_path + "/apt_experiments", '-n', srcname], stdout=subprocess.PIPE)
stdout = result.stdout
stdout = str(result.stdout)
pkgname_lines.append(stdout)
pkgname_lines.append(stdout + "t64")
file.close()
@ -68,4 +68,4 @@ with open("exp_pkg_names.json", "w") as twitterDataFile:
twitterDataFile.write(
json.dumps(pkg_data, indent=4)
)