msanders / cider

Hassle-free bootstrapping with Homebrew.
https://pypi.python.org/pypi/cider/
MIT License
840 stars 25 forks source link

Unexpected kwarg on running cider #11

Closed mgill25 closed 9 years ago

mgill25 commented 9 years ago

Here's the traceback:

$ cider cask missing                                                           ▸▸▸▸▸▸▸▸▸▸
Traceback (most recent call last):
  File "/usr/local/bin/cider", line 9, in <module>
    load_entry_point('cider==1.1.1', 'console_scripts', 'cider')()
  File "/usr/local/lib/python2.7/site-packages/cider/_cli.py", line 217, in main
    cli.main(standalone_mode=False)
  File "/usr/local/lib/python2.7/site-packages/click/core.py", line 473, in main
    with self.make_context(prog_name, args, **extra) as ctx:
  File "/usr/local/lib/python2.7/site-packages/click/core.py", line 402, in make_context
    ctx = Context(self, info_name=info_name, parent=parent, **extra)
TypeError: __init__() got an unexpected keyword argument 'standalone_mode'
msanders commented 9 years ago

You might be using an old version of click (my bad, should've declared the version in the setup file). Can you try using pip install -U click and run this again?