Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Nov 20, 2014
2 parents 30859bf + 15e92a0 commit c6f61c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_statsd/middleware.py
Expand Up @@ -99,7 +99,7 @@ def stop(self, key):

def submit(self, *args):
client = self.get_client(*args)
for k in self.data.keys():
for k in list(self.data.keys()):
client.send(k, self.data.pop(k))

if settings.DEBUG:
Expand Down

0 comments on commit c6f61c5

Please sign in to comment.