scripts/runner.py: remove pkg_resources.require() calls. These are at best redundant because we have already called _auto_deps.require_auto_deps() (from allmydata.__init__) at that point, and they are causing failure of the test-from-prefixdir step on some buildslaves. refs #1190

This commit is contained in:
david-sarah
2010-10-29 16:53:28 -07:00
parent 8835f009d0
commit 2a8f700026

View File

@ -2,12 +2,9 @@
import sys
from cStringIO import StringIO
import pkg_resources
pkg_resources.require('twisted')
from twisted.python import usage
import allmydata
pkg_resources.require(allmydata.__appname__)
from allmydata.scripts.common import BaseOptions
from allmydata.scripts import debug, create_node, startstop_node, cli, keygen, stats_gatherer
from allmydata.util.encodingutil import quote_output, get_argv_encoding