Skip to content
Snippets Groups Projects
Commit 464f62d5 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

[thorstenp] remove statements without effect

parent 98255a06
No related branches found
No related tags found
No related merge requests found
......@@ -485,8 +485,7 @@ class Socks5:
return -1
def get_file_contents(self, timeout):
''' read file contents from socket and write them to file ''', \
self.file_props['type'], self.file_props['sid']
''' read file contents from socket and write them to file '''
if self.file_props is None or \
('file-name' in self.file_props) is False:
self.file_props['error'] = -2
......
......@@ -249,7 +249,6 @@ class Session:
features=Node('stream:features')
if NS_TLS in self.waiting_features:
features.T.starttls.setNamespace(NS_TLS)
features.T.starttls.T.required
if NS_SASL in self.waiting_features:
features.T.mechanisms.setNamespace(NS_SASL)
for mec in self._owner.SASL.mechanisms:
......
......@@ -214,7 +214,7 @@ class IterableIPShell:
possibilities = self.IP.complete(split_line[-1])
try:
__builtins__.all
all(())
except AttributeError:
def all(iterable):
for element in iterable:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment