From: Lingchaox Xin Date: Thu, 20 Jun 2013 02:36:09 +0000 (+0800) Subject: Pylint for common/repomaker.py X-Git-Tag: 0.14~127 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=93265e73671a451e8f497bb32a17cb3428cdc953;p=services%2Fjenkins-scripts.git Pylint for common/repomaker.py In hashlib module, md5, sha256 ... are defined dynamically according to Openssl library availability in order to use the fastest available implementation, but pylint can NOT understand it, so diable it. Change-Id: I5f43625fe87aa0971a9a109258b6529c2ab9857f --- diff --git a/common/repomaker.py b/common/repomaker.py index 4d60b0e..24e2fac 100644 --- a/common/repomaker.py +++ b/common/repomaker.py @@ -21,7 +21,7 @@ RepoMaker - creates download repos import os import shutil -from hashlib import sha256 +from hashlib import sha256 # pylint: disable-msg=E0611 from common.builddata import BuildData, BuildDataError from common.imagedata import ImageData