Fixed a little issue in the code metrics dialog.

Sat, 16 May 2015 16:23:54 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 16 May 2015 16:23:54 +0200
changeset 4261
f05726488802
parent 4259
c90a1cb373f2
child 4263
7c7cb5188773

Fixed a little issue in the code metrics dialog.

DataViews/CodeMetricsDialog.py file | annotate | diff | comparison | revisions
--- a/DataViews/CodeMetricsDialog.py	Sat May 16 12:47:31 2015 +0200
+++ b/DataViews/CodeMetricsDialog.py	Sat May 16 16:23:54 2015 +0200
@@ -217,7 +217,7 @@
         v = []
         for key in ('start', 'end', 'lines', 'nloc', 'comments', 'empty'):
             if counters.get(key, 0):
-                v.append(counters[key])
+                v.append(loc.toString(counters[key]))
             else:
                 v.append('')
         return v

eric ide

mercurial