summaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorFrancisco Gimeno <kikov79@gmail.com>2015-10-21 23:26:29 +0000
committerFrancisco Gimeno <kikov79@gmail.com>2015-10-21 23:26:29 +0000
commit3fb04f44a1abdde346f9e82ba9fb8df851691be2 (patch)
treeed08366e5956648437c4057b1481a1a1b80f03a7 /roles
parent9f3d3e9d0e697ce85620ac0a7a7c5eeba892f1d6 (diff)
downloadopenshift-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
Diffstat (limited to 'roles')
-rwxr-xr-xroles/openshift_facts/library/openshift_facts.py3
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.