a91e36a Don't use bare except: clauses in ipa-client-install

1 file Authored by pviktori 11 years ago, Committed by mkosek 11 years ago,
    Don't use bare except: clauses in ipa-client-install
    
    Instead of `except:`, use `except Exception:`. This means that errors
    like KeyboardInterrupt are not handled, letting them terminate the
    script as expected.
    
    https://fedorahosted.org/freeipa/ticket/2941