Fixed a little issue in the code metrics dialog. 6_0_x

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

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 16 May 2015 16:23:54 +0200
branch
6_0_x
changeset 4262
59904313af24
parent 4260
af5c49e9e568
child 4264
eb874caf019d

Fixed a little issue in the code metrics dialog.
(grafted from f05726488802fc5a6593d8654ae46fe2efb7a36a)

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