source: trunk/packages/xen-3.1/xen-3.1/tools/misc/xen-bugtool @ 34

Last change on this file since 34 was 34, checked in by hartmans, 18 years ago

Add xen and xen-common

  • Property svn:mime-type set to text/script
File size: 353 bytes
Line 
1#!/usr/bin/env python
2
3#  -*- mode: python; -*-
4
5# Copyright (c) 2005, XenSource Ltd.
6
7import sys
8
9sys.path.append('/usr/lib/python')
10sys.path.append('/usr/lib64/python')
11
12from xen.util import bugtool
13
14
15if __name__ == "__main__":
16    try:
17        sys.exit(bugtool.main())
18    except KeyboardInterrupt:
19        print "\nInterrupted."
20        sys.exit(1)
Note: See TracBrowser for help on using the repository browser.