Skip to content

Commit 1478d5e

Browse files
committed
capitalize first letter in the error
1 parent 7e92904 commit 1478d5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mbed/mbed.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1062,7 +1062,7 @@ def fromlib(cls, lib=None):
10621062
if m_repo_ref:
10631063
rev = m_repo_ref.group(3)
10641064
if rev and not re.match(r'^([a-fA-F0-9]{6,40})$', rev):
1065-
error('named branches not allowed in .lib, offending lib is {} '.format(os.path.basename(lib)))
1065+
error('Named branches not allowed in .lib, offending lib is {} '.format(os.path.basename(lib)))
10661066

10671067
if not (m_local or m_bld_ref or m_repo_ref):
10681068
warning(

0 commit comments

Comments
 (0)