avkonst 11 years ago
parent
commit
f2d6d4223d

+ 1 - 1
mainline/README.md

@@ -1,4 +1,4 @@
-# [Metrix++ 1.2.*](http://metrixplusplus.sourceforge.net)
+# [Metrix++](http://metrixplusplus.sourceforge.net)
 
 Metrix++ is an extendable tool for code metrics collection and analysis.
 Check projects documentation for additional information:

+ 3 - 3
mainline/metrixpp.py

@@ -34,8 +34,8 @@ def main():
     this_file = os.path.basename(__file__)
     
     available_tools = []
-    excluded_tools = ['utils', 'export']
-    internal_tools = ['debug', 'test']
+    excluded_tools = ['utils']
+    internal_tools = ['debug', 'test', 'export']
     for fname in os.listdir(os.path.join(os.environ['METRIXPLUSPLUS_INSTALL_DIR'], 'tools')):
         tool_name = os.path.splitext(fname)[0]
         if tool_name == '__init__':
@@ -78,7 +78,7 @@ def main():
     instance = class_attr.__new__(class_attr)
     instance.__init__()
     return instance.run(sys.argv[3:])
-            
+
 if __name__ == '__main__':
     ts = time.time()
     core.log.set_default_format()

+ 1 - 1
mainline/tests/general/test_basic/test_help_--help_default_stdout.gold.txt

@@ -2,9 +2,9 @@ Usage: python metrixpp.py <action> --help
    or: python metrixpp.py <action> [options] -- [path 1] ... [path N]
 where: actions are:
 	collect
-	export
 	info
 	limit
 	view
 	debug	[internal]
+	export	[internal]
 	test	[internal]