From: Brian Warner Date: Thu, 19 Feb 2009 08:36:43 +0000 (-0700) Subject: setup.py: fix pyflakes complaints X-Git-Tag: allmydata-tahoe-1.4.0~182 X-Git-Url: https://git.rkrishnan.org/architecture.txt?a=commitdiff_plain;h=589a757e25ce421aa74d94b2c70a49e34668c805;p=tahoe-lafs%2Ftahoe-lafs.git setup.py: fix pyflakes complaints --- diff --git a/setup.py b/setup.py index e30294c6..812a09ba 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ # # See the docs/about.html file for licensing information. -import os, re, shutil, stat, subprocess, sys, zipfile +import os, shutil, stat, subprocess, sys, zipfile ##### sys.path management @@ -42,7 +42,6 @@ from pkg_resources import require # Make the dependency-version-requirement, which is used by the Makefile at # build-time, also available to the app at runtime: -import shutil shutil.copyfile("_auto_deps.py", os.path.join("src", "allmydata", "_auto_deps.py"))