diff options
| author | Milton Mazzarri <milmazz@gmail.com> | 2017-07-01 07:16:57 -0500 |
|---|---|---|
| committer | Milton Mazzarri <milmazz@gmail.com> | 2017-07-01 07:16:57 -0500 |
| commit | 44c6781cefa71e06fbbedce782496426782246fc (patch) | |
| tree | fa6b76b2b50be867e73977ee7cc1ee19e49b896d /src/bootstrap/bootstrap.py | |
| parent | ebf24ad3e9e21ddf5b8b532f414026e6d511626c (diff) | |
| download | rust-44c6781cefa71e06fbbedce782496426782246fc.tar.gz rust-44c6781cefa71e06fbbedce782496426782246fc.zip | |
Simplify print arguments
Diffstat (limited to 'src/bootstrap/bootstrap.py')
| -rw-r--r-- | src/bootstrap/bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index 49e073dcc13..eaf2a40f2fa 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -251,7 +251,7 @@ class RustBuild(object): # At this point we're pretty sure the user is running NixOS nix_os_msg = "info: you seem to be running NixOS. Attempting to patch" - print(" ".join([nix_os_msg, fname])) + print(nix_os_msg, fname) try: interpreter = subprocess.check_output( |
