Mercurial > p > roundup > code
diff roundup/scripts/roundup_server.py @ 5403:7f6afc7477e8
Python 3 preparation: remove unused ConfigParser import.
Manual patch (trivial, removing an unused import of a module that's
changed its name in Python 3).
| author | Joseph Myers <jsm@polyomino.org.uk> |
|---|---|
| date | Tue, 24 Jul 2018 23:49:13 +0000 |
| parents | 88dbacd11cd1 |
| children | 56cc58d20add |
line wrap: on
line diff
--- a/roundup/scripts/roundup_server.py Tue Jul 24 23:48:30 2018 +0000 +++ b/roundup/scripts/roundup_server.py Tue Jul 24 23:49:13 2018 +0000 @@ -37,7 +37,7 @@ import errno, cgi, getopt, os, socket, sys, traceback, time -import ConfigParser, BaseHTTPServer, SocketServer, StringIO +import BaseHTTPServer, SocketServer, StringIO try: from OpenSSL import SSL
