aboutsummaryrefslogtreecommitdiff
path: root/wqflask/utility/external.py
blob: 50afea08a84081e923f0553f4fe4318a7d4866ba (plain)
1
2
3
4
5
6
7
8
9
# Call external program

import os
import sys
import subprocess

def shell(command):
    if subprocess.call(command, shell=True) != 0:
        raise Exception("ERROR: failed on "+command)