mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 21:17:54 +00:00
Delete dead code, note porting.
This commit is contained in:
parent
c48228a988
commit
36d1056ad0
@ -1,6 +1,8 @@
|
||||
"""
|
||||
This module contains classes and functions to implement and manage
|
||||
a node for Tahoe-LAFS.
|
||||
|
||||
Ported to Python 3.
|
||||
"""
|
||||
from __future__ import absolute_import
|
||||
from __future__ import division
|
||||
@ -425,17 +427,6 @@ class _Config(object):
|
||||
os.path.join(self._basedir, *args)
|
||||
)
|
||||
|
||||
@staticmethod
|
||||
def _contains_unescaped_hash(item):
|
||||
characters = iter(item)
|
||||
for c in characters:
|
||||
if c == '\\':
|
||||
next(characters)
|
||||
elif c == '#':
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
|
||||
def create_tub_options(config):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user