diff options
author | Thomas Kahle <tomka@gentoo.org> | 2012-06-21 11:37:59 -0400 |
---|---|---|
committer | Thomas Kahle <tomka@gentoo.org> | 2012-06-21 11:37:59 -0400 |
commit | a36afbc4baa5dc4c30c92fa37a6d49ed7100f14b (patch) | |
tree | 105e74176a7facae64e5766131b524834fda3743 /scripts | |
parent | Implement the safedir option (diff) | |
download | tatt-a36afbc4baa5dc4c30c92fa37a6d49ed7100f14b.tar.gz tatt-a36afbc4baa5dc4c30c92fa37a6d49ed7100f14b.tar.bz2 tatt-a36afbc4baa5dc4c30c92fa37a6d49ed7100f14b.zip |
Remove bugbrowser as I don't use it and can't support it.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/tatt | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/tatt b/scripts/tatt index cecd7c7..202bbb9 100755 --- a/scripts/tatt +++ b/scripts/tatt @@ -13,7 +13,6 @@ from tatt.scriptwriter import writerdepscript as writeRdeps from tatt.scriptwriter import writesucessreportscript as writeSuccess from tatt.scriptwriter import writecommitscript as writeCommit from tatt.scriptwriter import writeCleanUpScript as writeCleanup -from tatt.bugbrowser import launch_browser as launch_browser from tatt.tattConfig import tattConfig as tattConfig from tatt.job import job as job @@ -74,11 +73,6 @@ parser.add_option("-v", "--verbose", dest="verbose", action="store_true", default = False) -parser.add_option("-o", "--overview" "--browse", - help="Launch the bug browser", - dest="bugbrowser", - action="store_true", - default = False) (options,args) = parser.parse_args() @@ -125,11 +119,6 @@ if options.succbugnum: print("Failure commenting on Bugzilla") exit(1) -if options.bugbrowser: - # Launch the bugbrowser - launch_browser (config) - exit (0) - # get a job object to save things to myJob = job() |