summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 9762c36045..28ded462df 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -33,7 +33,7 @@ _checksum_cache = bb.checksum.FileChecksumCache()
33 33
34logger = logging.getLogger("BitBake.Fetcher") 34logger = logging.getLogger("BitBake.Fetcher")
35 35
36CHECKSUM_LIST = [ "md5", "sha256" ] 36CHECKSUM_LIST = [ "md5", "sha256", "sha1", "sha384", "sha512" ]
37 37
38class BBFetchException(Exception): 38class BBFetchException(Exception):
39 """Class all fetch exceptions inherit from""" 39 """Class all fetch exceptions inherit from"""