File fix-for-broken-jobs-jid-in-2016.11.4.patch of Package salt
From 2b72dad30117fa48997690097301d23f6fa779ce Mon Sep 17 00:00:00 2001
From: senthilkumar-e <senthilkumar.eswaren@gmail.com>
Date: Wed, 26 Apr 2017 11:22:12 +0530
Subject: [PATCH] Fix for broken /jobs/<jid> in 2016.11.4
Fixes #40845
Fixing the pylint issue
---
salt/runner.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/salt/runner.py b/salt/runner.py
index 0eedec55b7..1557edbae4 100644
--- a/salt/runner.py
+++ b/salt/runner.py
@@ -74,6 +74,7 @@ class RunnerClient(mixins.SyncClientMixin, mixins.AsyncClientMixin, object):
eauth_creds = dict([(i, low.pop(i)) for i in [
'username', 'password', 'eauth', 'token', 'client', 'user', 'key',
+ '__current_eauth_groups', '__current_eauth_user',
] if i in low])
# Separate the new-style args/kwargs.
--
2.17.1