Skip to content

Commit

Permalink
fix print error
Browse files Browse the repository at this point in the history
  • Loading branch information
looooo committed Mar 6, 2018
1 parent c5d9c5d commit 6502b59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def check_with_cmake(self):
cmake_command += ['-G', os.environ['GENERATOR']]
except KeyError:
pass
print(yellow('calling: ' + cmake_command))
print(yellow('calling: ' + cmake_command[0] + ' ' + cmake_command[1]))
cmake = subprocess.Popen(cmake_command, stdout=subprocess.PIPE)
cmake_out, _ = cmake.communicate()
coin_vars = ['COIN_FOUND', 'COIN_VERSION', 'COIN_INCLUDE_DIR', 'COIN_LIB_DIR']
Expand Down

0 comments on commit 6502b59

Please sign in to comment.