X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=utils.py;h=f680a352580e7b0d9ba9a1141cb5dbc055ff879c;hb=9de8be4af611aad0aedeffd67696ee0582b76ae9;hp=ce9f4f4a973af1b1559c93fadecc345b25cfb751;hpb=f92156d5ec5ea4aa65035a6835ec1b9e8c466230;p=dak.git diff --git a/utils.py b/utils.py index ce9f4f4a..f680a352 100644 --- a/utils.py +++ b/utils.py @@ -2,7 +2,7 @@ # Utility functions # Copyright (C) 2000, 2001, 2002 James Troup -# $Id: utils.py,v 1.52 2002-11-22 04:06:34 troup Exp $ +# $Id: utils.py,v 1.53 2002-11-26 15:49:16 troup Exp $ # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -643,6 +643,16 @@ def print_exc(): ################################################################################ +def try_with_debug(function): + try: + function(); + except SystemExit: + raise; + except: + print_exc(); + +################################################################################ + apt_pkg.init() Cnf = apt_pkg.newConfiguration();