American politics became Americans nightly entertainment, its a saturated behemoth with an insatiable appetite. It will not be long until election campaigns are non-stop. There's simply too much money in this game.
if not str(command):
response = None
logger.error('Command argument must be string')
else:
response = os.system(command)
if response != 0:
logger.error('Command returned non-zero status: {}'.format(command))
exit(1)
return response
```