Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
processing: fix population of commander combobox (fixes #15283)
  • Loading branch information
jef-n committed Aug 28, 2016
1 parent 052d3ef commit d3882d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/CommanderWindow.py
Expand Up @@ -102,7 +102,7 @@ def fillCombo(self):
# Add algorithms
for algs in algList.algs.values():
for alg in algs:
self.combo.addItem('Processing algorithm: ' + alg.name)
self.combo.addItem('Processing algorithm: ' + alg)

# Add functions
for command in dir(self.commands):
Expand Down

0 comments on commit d3882d5

Please sign in to comment.