You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2011/06/28 16:31:31 UTC

svn commit: r1140639 - /libcloud/trunk/setup.py

Author: tomaz
Date: Tue Jun 28 14:31:31 2011
New Revision: 1140639

URL: http://svn.apache.org/viewvc?rev=1140639&view=rev
Log:
Don't specify full path to pep8 binary.

Modified:
    libcloud/trunk/setup.py

Modified: libcloud/trunk/setup.py
URL: http://svn.apache.org/viewvc/libcloud/trunk/setup.py?rev=1140639&r1=1140638&r2=1140639&view=diff
==============================================================================
--- libcloud/trunk/setup.py (original)
+++ libcloud/trunk/setup.py Tue Jun 28 14:31:31 2011
@@ -134,7 +134,7 @@ class Pep8Command(Command):
             sys.exit(1)
 
         cwd = os.getcwd()
-        retcode = call(('/usr/local/bin/pep8 %s/libcloud/ %s/test/' %
+        retcode = call(('pep8 %s/libcloud/ %s/test/' %
                 (cwd, cwd)).split(' '))
         sys.exit(retcode)