Skip to content

Instantly share code, notes, and snippets.

@mikeal
Created April 16, 2009 16:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeal/96499 to your computer and use it in GitHub Desktop.
Save mikeal/96499 to your computer and use it in GitHub Desktop.
import copy
from mozmill import CLI, FirefoxProfile
class LangProfile(FirefoxProfile):
preferences = copy.copy(FirefoxProfile.preferences)
preferences['mypref'] = True
class LangCLI(CLI):
profile_class LangProfile
if __name__ == __main__:
LangCLI().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment