Changeset - d0425115dad1
[Not reviewed]
0 2 0
Lance Edgar - 5 months ago 2024-07-01 16:35:08
lance@edbob.org
fix: remove references, dependency for `six` package
2 files changed with 0 insertions and 3 deletions:
0 comments (0 inline, 0 general) First comment
pyproject.toml
Show inline comments
 
@@ -26,7 +26,6 @@ dependencies = [
 
        "fabric2",
 
        "invoke",
 
        "rattail",
 
        "six",
 
]
 

	
 

	
rattail_fabric2/util.py
Show inline comments
 
@@ -111,8 +111,6 @@ def append(c, filename, text, use_sudo=False, partial=False, escape=True,
 
    """
 
    func = use_sudo and c.sudo or c.run
 
    # Normalize non-list input to be a list
 
    # TODO: do we need to check for six.something here?
 
    # if isinstance(text, basestring):
 
    if isinstance(text, str):
 
        text = [text]
 
    for line in text:
0 comments (0 inline, 0 general) First comment
You need to be logged in to comment. Login now