Browse Source

lib/bb/fetch2: fix typo in conflicting revision message

spcify -> specify

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Paul Eggleton 7 years ago
parent
commit
c46f183b3e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/bb/fetch2/__init__.py

+ 1 - 1
lib/bb/fetch2/__init__.py

@@ -1130,7 +1130,7 @@ def srcrev_internal_helper(ud, d, name):
         if srcrev == "INVALID" or not srcrev:
             return parmrev
         if srcrev != parmrev:
-            raise FetchError("Conflicting revisions (%s from SRCREV and %s from the url) found, please spcify one valid value" % (srcrev, parmrev))
+            raise FetchError("Conflicting revisions (%s from SRCREV and %s from the url) found, please specify one valid value" % (srcrev, parmrev))
         return parmrev
 
     if srcrev == "INVALID" or not srcrev: