Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
620fad9f
Commit
620fad9f
authored
Jun 01, 2015
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing an oops in inventory/__init__.py where the slots are incorrect
parent
7f1b64d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lib/ansible/inventory/__init__.py
+3
-3
No files found.
lib/ansible/inventory/__init__.py
View file @
620fad9f
...
@@ -43,9 +43,9 @@ class Inventory(object):
...
@@ -43,9 +43,9 @@ class Inventory(object):
Host inventory for ansible.
Host inventory for ansible.
"""
"""
__slots__
=
[
'host_list'
,
'groups'
,
'_restriction'
,
'_also_restriction'
,
'_subset'
,
#
__slots__ = [ 'host_list', 'groups', '_restriction', '_also_restriction', '_subset',
'parser'
,
'_vars_per_host'
,
'_vars_per_group'
,
'_hosts_cache'
,
'_groups_list'
,
#
'parser', '_vars_per_host', '_vars_per_group', '_hosts_cache', '_groups_list',
'_pattern_cache'
,
'_vault_password'
,
'_vars_plugins'
,
'_playbook_basedir'
]
#
'_pattern_cache', '_vault_password', '_vars_plugins', '_playbook_basedir']
def
__init__
(
self
,
loader
,
variable_manager
,
host_list
=
C
.
DEFAULT_HOST_LIST
):
def
__init__
(
self
,
loader
,
variable_manager
,
host_list
=
C
.
DEFAULT_HOST_LIST
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment