Browse Source

Typo correction

Mathieu 10 years ago
parent
commit
764099c4a2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/vpn_acct.py

+ 1 - 1
contrib/vpn_acct.py

@@ -34,7 +34,7 @@ def read_vpn_acct_file(filename):
         # format: username ip qos uptxbytes downrxbytes
         if len(d) == 5:
             metrics.extend([
-                ( '%s.%s.upxtbytes'   % (options.prefix, d[0]), (tstamp, int(d[3])) ),
+                ( '%s.%s.uptxbytes'   % (options.prefix, d[0]), (tstamp, int(d[3])) ),
                 ( '%s.%s.downrxbytes' % (options.prefix, d[0]), (tstamp, int(d[4])) ),
             ])
     return tstamp, metrics