Comment 7 for bug 798192

Revision history for this message
john umphenour (johnumph) wrote :

i fixed this by opening /usr/lib/lsb/initdutils.py
then changing
rise ValueError, 'need a file or string'
to
rise ValueError('need a file or string)

and

except ValueError, x:
to
except ValueError(x:)

it also helped boot to login faster.