Skip to content

Commit a8f801c

Browse files
committed
Fixing order of pip install message
1 parent 9e60c87 commit a8f801c

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
@@ -1208,7 +1208,7 @@ def post_action(self):
12081208
"The mbed build tools in this program require Python modules that are not installed.\n"
12091209
"This might prevent compiling code or exporting to IDEs and other toolchains.\n"
12101210
"The missing Python modules are: %s\n"
1211-
"You can install all missing modules by running \"pip install -r %s\" in \"%s\"" % (', '.join(missing), mbed_os_path, fname))
1211+
"You can install all missing modules by running \"pip install -r %s\" in \"%s\"" % (', '.join(missing), fname, mbed_os_path))
12121212

12131213
def add_tools(self, path):
12141214
with cd(path):

0 commit comments

Comments
 (0)