From 85af921dfe990be464be27add2956512e7d24de7 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Thu, 10 Oct 2019 17:19:35 -0400 Subject: switch to raw strings for sections that need to show some backslashes --- python/plugin.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'python/plugin.py') diff --git a/python/plugin.py b/python/plugin.py index 08962381..e4049547 100644 --- a/python/plugin.py +++ b/python/plugin.py @@ -324,7 +324,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)): @classmethod def register(cls, name, description, action, is_valid = None): - """ + r""" ``register`` Register a plugin :param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder) @@ -343,7 +343,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)): @classmethod def register_for_address(cls, name, description, action, is_valid = None): - """ + r""" ``register_for_address`` Register a plugin to be called with an address argument :param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder) @@ -362,7 +362,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)): @classmethod def register_for_range(cls, name, description, action, is_valid = None): - """ + r""" ``register_for_range`` Register a plugin to be called with a range argument :param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder) @@ -381,7 +381,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)): @classmethod def register_for_function(cls, name, description, action, is_valid = None): - """ + r""" ``register_for_function`` Register a plugin to be called with a function argument :param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder) @@ -400,7 +400,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)): @classmethod def register_for_low_level_il_function(cls, name, description, action, is_valid = None): - """ + r""" ``register_for_low_level_il_function`` Register a plugin to be called with a low level IL function argument :param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder) @@ -419,7 +419,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)): @classmethod def register_for_low_level_il_instruction(cls, name, description, action, is_valid = None): - """ + r""" ``register_for_low_level_il_instruction`` Register a plugin to be called with a low level IL instruction argument :param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder) @@ -438,7 +438,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)): @classmethod def register_for_medium_level_il_function(cls, name, description, action, is_valid = None): - """ + r""" ``register_for_medium_level_il_function`` Register a plugin to be called with a medium level IL function argument :param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder) @@ -457,7 +457,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)): @classmethod def register_for_medium_level_il_instruction(cls, name, description, action, is_valid = None): - """ + r""" ``register_for_medium_level_il_instruction`` Register a plugin to be called with a medium level IL instruction argument :param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder) -- cgit v1.3.1