浏览代码

Remove unused attach_socket function from Container.

Signed-off-by: Daniel Nephin <[email protected]>
Daniel Nephin 10 年之前
父节点
当前提交
fe65c0258d
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. 0 3
      compose/container.py

+ 0 - 3
compose/container.py

@@ -212,9 +212,6 @@ class Container(object):
     def attach(self, *args, **kwargs):
         return self.client.attach(self.id, *args, **kwargs)
 
-    def attach_socket(self, **kwargs):
-        return self.client.attach_socket(self.id, **kwargs)
-
     def __repr__(self):
         return '<Container: %s (%s)>' % (self.name, self.id[:6])