diff --git a/options.py b/options.py index 5319004..354ed47 100644 --- a/options.py +++ b/options.py @@ -16,7 +16,7 @@ class BCOptions(optparse.OptionParser): self.add_option("-d", "--debug", action="store_true", dest="debug", help="debug mode") self.add_option("--xml", action="store", dest="export_xml", help="export traces to xml (ex: --xml foo.xml)") self.add_option("--bh", action="store", dest="browser_history", help="set browser's history path") - self.add_option("-b", action="store", dest="browser", help="set browser to be user: F = Firefox / C = Chrome / S = Safari / Ch = Chromium") + self.add_option("-b", action="store", dest="browser", help="set browser manually: F = Firefox / C = Chrome / S = Safari / Ch = Chromium") #self.add_option("--proxy", action="store", dest="proxy", help="set proxy server") def get_options(self, user_args=None):