no double newline
This commit is contained in:
parent
6778b32fe8
commit
132b4856a5
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ class Command(BaseCommand):
|
|||
if isinstance(value, dict):
|
||||
self._output_graphite(lines, prefix+name+'.', value, timestamp)
|
||||
continue
|
||||
lines.append('%s%s %s %s\n' % (prefix, name, value, timestamp))
|
||||
lines.append('%s%s %s %s' % (prefix, name, value, timestamp))
|
||||
|
||||
def handle(self, *args, **options):
|
||||
data = json.load(options['statsfile'])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue