From 589a757e25ce421aa74d94b2c70a49e34668c805 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Thu, 19 Feb 2009 01:36:43 -0700 Subject: [PATCH] setup.py: fix pyflakes complaints --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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")) -- 2.45.2