Skip to content

Commit

Permalink
Removed an unused import that caused a deprecation warning.
Browse files Browse the repository at this point in the history
Changed the default master script name to the part name. (Don't add
a "test-" prefix any more.)
  • Loading branch information
Jim Fulton committed Aug 17, 2009
1 parent 13c2d8d commit 36edc80
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/z3c/recipe/compattest/recipe.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import infrae.subversion
import os
import pkg_resources
import popen2
import re
import zc.buildout.easy_install
import zc.recipe.egg
Expand All @@ -27,7 +26,7 @@ def __init__(self, buildout, name, options):
self.exclude = string2list(self.options.get('exclude', ''), [])
self.wanted_packages = self._wanted_packages()

self.script = self.options.get('script', 'test-%s' % self.name)
self.script = self.options.get('script', self.name)

self.svn_url = self.options.get('svn_url', None)
if self.svn_url and self.svn_url[-1] != '/':
Expand Down

0 comments on commit 36edc80

Please sign in to comment.