undo unnecessary brackets for print

This commit is contained in:
Riccardo
2019-09-24 18:07:05 -07:00
parent dbc248027e
commit ffa68ef711
10 changed files with 34 additions and 34 deletions

View File

@@ -38,7 +38,7 @@ def ensure_st_up_to_date():
assert(not panda.bootstub)
version = str(panda.get_version())
print(("%s should be %s" % (version, repo_version)))
print("%s should be %s" % (version, repo_version))
assert(version.startswith(repo_version))
if __name__ == "__main__":