Fix % formatting style in miscellaneous places.

(imported from commit 917196024c981f879355c728da9b4590e964eeef)
This commit is contained in:
Steve Howell
2013-06-27 14:15:19 -04:00
parent ef1e4c85ae
commit 2bacaf2213
5 changed files with 6 additions and 6 deletions

View File

@@ -28,9 +28,9 @@ class StatsDWrapper(object):
"""Set a gauge value."""
from django_statsd.clients import statsd
if delta:
value = '%+g|g' % value
value = '%+g|g' % (value,)
else:
value = '%g|g' % value
value = '%g|g' % (value,)
statsd._send(stat, value, rate)
def __getattr__(self, name):