Commit 5dfa1418 authored by michael's avatar michael

Fixed python3 compat (strings.strip usage)

parent 996580c0
...@@ -9,7 +9,7 @@ import subprocess ...@@ -9,7 +9,7 @@ import subprocess
import urllib import urllib
import zc.buildout import zc.buildout
from string import strip strip = lambda x:x.strip()
class Recipe(object): class Recipe(object):
"""zc.buildout recipe for compiling and installing software""" """zc.buildout recipe for compiling and installing software"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment