diff options
author | emkael <emkael@tlen.pl> | 2016-11-15 01:24:37 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-11-15 01:24:37 +0100 |
commit | b9bd2cf83fbc9e463d9c04308c66966314f51772 (patch) | |
tree | c39be570826b67a2acf6f12daedba7a7ce7a22e9 | |
parent | 1061f49a6381875f87c88c579d6b65473d230f9f (diff) |
* fixing pylint issues
-rw-r--r-- | src/bidding_data.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/bidding_data.py b/src/bidding_data.py index 82adb5c..fddcafe 100644 --- a/src/bidding_data.py +++ b/src/bidding_data.py @@ -25,10 +25,10 @@ def hash_file(file_path, block=65536): if path.exists(file_path): with file(file_path) as file_obj: file_hash = hashlib.md5() - buffer = file_obj.read(block) - while len(buffer) > 0: - file_hash.update(buffer) - buffer = file_obj.read(block) + file_buffer = file_obj.read(block) + while len(file_buffer) > 0: + file_hash.update(file_buffer) + file_buffer = file_obj.read(block) return file_hash.hexdigest() return None @@ -161,17 +161,17 @@ class JFRBidding(object): # alignment of the bidding table __directions = ['W', 'N', 'E', 'S'] - def __store_file_hash(self, path): + def __store_file_hash(self, file_path): if self.__goniec['host'] is not None: - self.__goniec['file_hashes'][path] = hash_file(path) + self.__goniec['file_hashes'][file_path] = hash_file(file_path) def __detect_changed_files(self): changed_paths = [] - for path, file_hash in self.__goniec['file_hashes'].iteritems(): - if file_hash != hash_file(path): - changed_paths.append(path) + for file_path, file_hash in self.__goniec['file_hashes'].iteritems(): + if file_hash != hash_file(file_path): + changed_paths.append(file_path) else: - log.getLogger('hash').info('file not changed: %s', path) + log.getLogger('hash').info('file not changed: %s', file_path) return changed_paths def __format_bidding(self, bidding): |