Remove unused parameter from method arguments
This commit is contained in:
parent
b42bc91258
commit
6c4f50a2ea
1 changed files with 2 additions and 2 deletions
|
@ -366,8 +366,8 @@ class VirtNetwork(object):
|
|||
def define(self, entryid, xml):
|
||||
return self.conn.define_from_xml(entryid, xml)
|
||||
|
||||
def info(self, facts_mode='info'):
|
||||
return self.facts(facts_mode)
|
||||
def info(self):
|
||||
return self.facts(facts_mode='info')
|
||||
|
||||
def facts(self, facts_mode='facts'):
|
||||
results = dict()
|
||||
|
|
Loading…
Reference in a new issue