ia64/xen-unstable
view tools/misc/xen-bugtool @ 8740:3d7ea7972b39
Update patches for linux 2.6.15.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
author | cl349@firebug.cl.cam.ac.uk |
---|---|
date | Thu Feb 02 17:16:00 2006 +0000 (2006-02-02) |
parents | c5ee3b6f25b3 |
children | 0e24e9674ded |
line source
1 #!/usr/bin/env python
3 # -*- mode: python; -*-
5 # Copyright (c) 2005, XenSource Ltd.
7 import sys
9 sys.path.append('/usr/lib/python')
10 sys.path.append('/usr/lib64/python')
12 from xen.util import bugtool
15 if __name__ == "__main__":
16 try:
17 sys.exit(bugtool.main())
18 except KeyboardInterrupt:
19 print "\nInterrupted."
20 sys.exit(1)