Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/gruntworker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <github@rebertia.com>2014-12-13 03:21:37 +0300
committerChris Rebert <github@rebertia.com>2014-12-13 03:21:37 +0300
commita16e3153ece88e3fbf374e100f6a84490528f54e (patch)
tree16caeda45ecc1c81de431f333598f21b7d660df5
parent7c33a32a3ec56c6c8c80c9aa6e07acb5eec73f46 (diff)
pylint exemption
-rwxr-xr-xgruntworker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gruntworker.py b/gruntworker.py
index 70cbe6b..f464470 100755
--- a/gruntworker.py
+++ b/gruntworker.py
@@ -122,7 +122,7 @@ def main():
run_expecting_success([b'git', b'add', b'--'] + modified_files)
run_expecting_success([b'git', b'commit', b'-m', b"automatic grunt dist"])
push_or_err()
- except Exception:
+ except Exception: # pylint: disable=W0703
log("Resetting master branch & checkout back to commit {} ...".format(post_fetch_commit_sha))
update_master(to_commitish=post_fetch_commit_sha)
log("Failed!")