When using git review today, i was greeted with:
A new version of git-review is availble on PyPI. Please update your copy with:
pip install -U git-review
Actually running that resulted in an error:
pip install -U git-review Traceback (most recent call last): File "/usr/local/bin/pip", line 5, in <module>
The solution to this for me was:
sudo easy_install --upgrade pip
Just in case others run into this problem.
DJ