mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
2to3 fix
This commit is contained in:
parent
21651e300e
commit
8437b2605c
1 changed files with 2 additions and 2 deletions
|
@ -14,9 +14,9 @@ class MuninGraph(object):
|
|||
|
||||
def print_config(self):
|
||||
for key,value in self.graph_config.items():
|
||||
print '%s %s' % (key, value)
|
||||
print('%s %s' % (key, value))
|
||||
|
||||
def print_metrics(self, metrics):
|
||||
for key, value in metrics.items():
|
||||
print '%s.value %s' % (key, value)
|
||||
print('%s.value %s' % (key, value))
|
||||
|
Loading…
Add table
Reference in a new issue