diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-08-29 09:18:08 +0100 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-08-29 09:18:08 +0100 |
commit | 680a3e8d44623a4571c85d78e42d3c55f758f6fd (patch) | |
tree | 61a32a8203696e17ef82be90ddc79fbdeb9aa39d | |
parent | 95723fb6497d99ddc73a008c5ae0f4d44acdad9d (diff) | |
download | poezio-680a3e8d44623a4571c85d78e42d3c55f758f6fd.tar.gz poezio-680a3e8d44623a4571c85d78e42d3c55f758f6fd.tar.bz2 poezio-680a3e8d44623a4571c85d78e42d3c55f758f6fd.tar.xz poezio-680a3e8d44623a4571c85d78e42d3c55f758f6fd.zip |
daemon: Remove outdated mention of Python 3.3.
-rwxr-xr-x | poezio/daemon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/daemon.py b/poezio/daemon.py index 63db2964..20acfa8a 100755 --- a/poezio/daemon.py +++ b/poezio/daemon.py @@ -35,7 +35,7 @@ class Executor(threading.Thread): can totally fail, we don’t care, and we can start commands without having to wait for them to return. WARNING: Be careful to properly escape what is untrusted by using - pipes.quote (or shlex.quote with python 3.3) for example. + shlex.quote for example. """ def __init__(self, command, remote=False): threading.Thread.__init__(self) |