From 32ad9b68085a5448d09e375da6a8477ba45615d2 Mon Sep 17 00:00:00 2001 From: David Schoonover Date: Fri, 22 Jun 2012 10:53:31 -0700 Subject: [PATCH] Apparently the Fabric dep is case-sensitive. --- fabfile/__init__.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fabfile/__init__.py b/fabfile/__init__.py index f1f75fb..cbf6e88 100644 --- a/fabfile/__init__.py +++ b/fabfile/__init__.py @@ -19,7 +19,7 @@ except ImportError: ERROR: You're missing a dependency! To build this project using fabric, you'll need to install fabric (and some other stuff): - pip install -U fabric paramiko path.py + pip install -U Fabric paramiko path.py """ sys.exit(1) -- 1.7.0.4