summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch/__init__.py')
-rw-r--r--bitbake/lib/bb/fetch/__init__.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py
index 18775301a3..0562d72a23 100644
--- a/bitbake/lib/bb/fetch/__init__.py
+++ b/bitbake/lib/bb/fetch/__init__.py
@@ -733,9 +733,7 @@ class Fetch(object):
733 """ 733 """
734 Verify the md5sum we wanted with the one we got 734 Verify the md5sum we wanted with the one we got
735 """ 735 """
736 wanted_sum = None 736 wanted_sum = ud.parm.get('md5sum')
737 if 'md5sum' in ud.parm:
738 wanted_sum = ud.parm['md5sum']
739 if not wanted_sum: 737 if not wanted_sum:
740 return True 738 return True
741 739