mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-06-20 00:03:58 +00:00
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:
@ -2,12 +2,9 @@
|
|||||||
import sys
|
import sys
|
||||||
from cStringIO import StringIO
|
from cStringIO import StringIO
|
||||||
|
|
||||||
import pkg_resources
|
|
||||||
pkg_resources.require('twisted')
|
|
||||||
from twisted.python import usage
|
from twisted.python import usage
|
||||||
|
|
||||||
import allmydata
|
import allmydata
|
||||||
pkg_resources.require(allmydata.__appname__)
|
|
||||||
from allmydata.scripts.common import BaseOptions
|
from allmydata.scripts.common import BaseOptions
|
||||||
from allmydata.scripts import debug, create_node, startstop_node, cli, keygen, stats_gatherer
|
from allmydata.scripts import debug, create_node, startstop_node, cli, keygen, stats_gatherer
|
||||||
from allmydata.util.encodingutil import quote_output, get_argv_encoding
|
from allmydata.util.encodingutil import quote_output, get_argv_encoding
|
||||||
|
Reference in New Issue
Block a user