Browse code

Fixing bug to read shasum of source file correctly if macros are used

dthaluru authored on 2015/08/06 09:16:52
Showing 1 changed files
... ...
@@ -326,6 +326,7 @@ class SpecParser(object):
326 326
 
327 327
     def readChecksum(self,line,pkg):
328 328
         strUtils = StringUtils()
329
+        line=pkg.decodeContents(line)
329 330
         data = line.strip();
330 331
         words=data.split(" ")
331 332
         nrWords = len(words)