We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e831da commit 0d21bd0Copy full SHA for 0d21bd0
python/plugins/processing/tools/general.py
@@ -49,7 +49,10 @@ def algorithmHelp(id):
49
alg = QgsApplication.processingRegistry().algorithmById(id)
50
if alg is not None:
51
print('{} ({})\n'.format(alg.displayName(), alg.id()))
52
- print(alg.shortHelpString())
+ if alg.shortDescription():
53
+ print(alg.shortDescription() + '\n')
54
+ if alg.shortHelpString():
55
+ print(alg.shortHelpString() + '\n')
56
print('\n----------------')
57
print('Input parameters')
58
print('----------------')
0 commit comments