Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tuning.py (python3 / mac) #35

Merged
merged 1 commit into from Dec 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Fix tuning.py (python3 / mac)
Fix 'expected a bytes-like object, str found' error message.

Maybe specific to my environment, but seems legit.
  • Loading branch information
GillesDebunne committed Sep 30, 2019
commit 12e2217d4eaf27054f8e6670529dbf25f39c40fc
@@ -163,7 +163,7 @@ def main():
print('-------------------------------')
for name in sorted(PARAMETERS.keys()):
data = PARAMETERS[name]
print('{:16}\t{}'.format(name, b'\t'.join([str(i) for i in data[2:7]])))
print('{:16}\t{}'.format(name, '\t'.join([str(i) for i in data[2:7]])))
for extra in data[7:]:
print('{}{}'.format(' '*60, extra))
else: