diff piecrust/commands/builtin/info.py @ 1103:6462c4a87532

routes: Make help topic names consistent.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 17 Feb 2018 16:13:32 -0800
parents 07c23be08029
children 986ecdaa2a36
line wrap: on
line diff
--- a/piecrust/commands/builtin/info.py	Sat Feb 17 15:09:04 2018 -0800
+++ b/piecrust/commands/builtin/info.py	Sat Feb 17 16:13:32 2018 -0800
@@ -101,11 +101,11 @@
     def getHelpTopics(self):
         return [('routes_config',
                  "Specifying URL routes for your site's content."),
-                ('route_params',
+                ('routes_params',
                  "Show the available route parameters.")]
 
     def getHelpTopic(self, topic, app):
-        if topic != 'route_params':
+        if topic != 'routes_params':
             return _ResourcesHelpTopics.getHelpTopic(self, topic, app)
 
         import textwrap