scottrice / Ice

Application to automatically add ROMs to Steam
http://scottrice.github.io/Ice/
MIT License
835 stars 96 forks source link

Print warning if reading process list fails #170

Closed scottrice closed 10 years ago

scottrice commented 10 years ago

If for some reason Ice can't get the list of processes that are currently running, just print out a warning to the user that Ice does nothing if Steam is currently running and then proceed as normal.

marcusmoller commented 10 years ago

Won't a simple try/except work? Should be sufficient for #152.

try:
    # get list of processes
except:
    # error occured
scottrice commented 10 years ago

Fixed by 918b048