summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2019-07-11 16:08:46 +0200
committerAlexander Couzens <lynxis@fe80.eu>2019-07-11 16:10:40 +0200
commit37575534a43ba0a3c69644b779fd36ca11f17fa2 (patch)
tree8cc76dfb755edb227918b2b35dcf8e36dc3c8d56 /src
parent32a1a5b5da1e038d94f6e0a1a38dfb9b87072552 (diff)
firmware/solve_envs.py: make it compatible with python3
Diffstat (limited to 'src')
-rwxr-xr-xsrc/target/firmware/solve_envs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/firmware/solve_envs.py b/src/target/firmware/solve_envs.py
index 0e5f5e8c..d4cee805 100755
--- a/src/target/firmware/solve_envs.py
+++ b/src/target/firmware/solve_envs.py
@@ -34,7 +34,7 @@ def main(name, board_envs, app_envs):
envs = solve(board_envs, app_envs)
# Result
- print ' '.join(envs)
+ print(' '.join(envs))
if __name__ == '__main__':