Skip to content

Commit 529777f

Browse files
authored
Merge pull request #194 from bridadan/pip-install-message-fix
Fixing order of pip install message
2 parents 86751cd + a8f801c commit 529777f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mbed/mbed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,7 @@ def post_action(self):
12131213
"The mbed build tools in this program require Python modules that are not installed.\n"
12141214
"This might prevent compiling code or exporting to IDEs and other toolchains.\n"
12151215
"The missing Python modules are: %s\n"
1216-
"You can install all missing modules by running \"pip install -r %s\" in \"%s\"" % (', '.join(missing), mbed_os_path, fname))
1216+
"You can install all missing modules by running \"pip install -r %s\" in \"%s\"" % (', '.join(missing), fname, mbed_os_path))
12171217

12181218
def add_tools(self, path):
12191219
with cd(path):

0 commit comments

Comments
 (0)