rrd.py: remove unused argument
This commit is contained in:
parent
37db42b51e
commit
8c0e367f3d
4
rrd.py
4
rrd.py
|
@ -96,7 +96,7 @@ class rrd:
|
||||||
]
|
]
|
||||||
subprocess.check_output(args)
|
subprocess.check_output(args)
|
||||||
|
|
||||||
def createNodeGraph(self,nodePrimaryMAC,displayTimeNode):
|
def createNodeGraph(self,nodePrimaryMAC):
|
||||||
nodeGraph = self.nodeMACToPNGFile(nodePrimaryMAC)
|
nodeGraph = self.nodeMACToPNGFile(nodePrimaryMAC)
|
||||||
nodeFile = self.nodeMACToRRDFile(nodePrimaryMAC)
|
nodeFile = self.nodeMACToRRDFile(nodePrimaryMAC)
|
||||||
args = ['rrdtool','graph', nodeGraph, '-s', '-' + self.displayTimeNode , '-w', '800', '-h', '400', '-l', '0', '-y', '1:1',
|
args = ['rrdtool','graph', nodeGraph, '-s', '-' + self.displayTimeNode , '-w', '800', '-h', '400', '-l', '0', '-y', '1:1',
|
||||||
|
@ -150,4 +150,4 @@ class rrd:
|
||||||
|
|
||||||
nodeName = os.path.basename(fileName).split('.')
|
nodeName = os.path.basename(fileName).split('.')
|
||||||
if nodeName[1] == 'rrd' and not nodeName[0] == "nodes":
|
if nodeName[1] == 'rrd' and not nodeName[0] == "nodes":
|
||||||
self.createNodeGraph(nodeName[0],self.displayTimeNode)
|
self.createNodeGraph(nodeName[0])
|
||||||
|
|
Loading…
Reference in a new issue