diff --git a/compose/container.py b/compose/container.py index 28af093d7..a03acf56f 100644 --- a/compose/container.py +++ b/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 '' % (self.name, self.id[:6])