In joystick/consumers/fedora_messaging_consumer.py, line 21, subprocess.Popen is being called with stdin=subprocess.PIPE, while there's never any input passed in. Why is this the case?
joystick/consumers/fedora_messaging_consumer.py
subprocess.Popen
stdin=subprocess.PIPE
I've been using this method as a boilerplate for the Python function. This should be replaced by subprocess.run
Metadata Update from @puiterwijk: - Issue status updated to: Closed (was: Open)