Skip to content
Snippets Groups Projects
Unverified Commit 195d2250 authored by Awais Qureshi's avatar Awais Qureshi Committed by GitHub
Browse files

BOM-1417 (#23476)

Fixing management command.

Django PR removed force_str method: https://github.com/django/django/commit/dc8834cad41aa407f402dc54788df3cd37ab3e22#diff-55346957c9b0473492d19a390a7adb47L36

None is not working now.
parent c4914bc2
No related merge requests found
......@@ -60,7 +60,7 @@ class Command(BaseCommand):
export_course_to_tarfile(course_key, filename)
results = self._get_results(filename) if pipe_results else None
results = self._get_results(filename) if pipe_results else ''
self.stdout.write(results, ending="")
......
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