diff options
author | Francisco Gimeno <kikov79@gmail.com> | 2015-10-21 23:26:29 +0000 |
---|---|---|
committer | Francisco Gimeno <kikov79@gmail.com> | 2015-10-21 23:26:29 +0000 |
commit | 3fb04f44a1abdde346f9e82ba9fb8df851691be2 (patch) | |
tree | ed08366e5956648437c4057b1481a1a1b80f03a7 | |
parent | 9f3d3e9d0e697ce85620ac0a7a7c5eeba892f1d6 (diff) | |
download | openshift-3fb04f44a1abdde346f9e82ba9fb8df851691be2.tar.gz openshift-3fb04f44a1abdde346f9e82ba9fb8df851691be2.tar.bz2 openshift-3fb04f44a1abdde346f9e82ba9fb8df851691be2.tar.xz openshift-3fb04f44a1abdde346f9e82ba9fb8df851691be2.zip |
Remove pylint comment from Sha-Bang. SSH process get hung when calling python # pylint: disable=too-many-lines
-rwxr-xr-x | roles/openshift_facts/library/openshift_facts.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py index 6a32b24aa..bd8d96657 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -1,4 +1,5 @@ -#!/usr/bin/python # pylint: disable=too-many-lines +#!/usr/bin/python +# pylint: disable=too-many-lines # -*- coding: utf-8 -*- # vim: expandtab:tabstop=4:shiftwidth=4 # Reason: Disable pylint too-many-lines because we don't want to split up this file. |