Skip to content
Snippets Groups Projects
Verified Commit 1a208a92 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Multiply calculated progress with 100 to get a percentage

parent 9e8b9077
No related branches found
No related tags found
1 merge request!491Resolve "Make Celery non-optional"
Pipeline #5917 passed
......@@ -113,7 +113,7 @@ class ProgressRecorder(AbstractProgressRecorder):
percent = 0
if self._total > 0:
percent = self._current / self._total
percent = self._current / self._total * 100
if description is not None:
self._messages.append((level, description))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment