mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
smbserver: fix Python 3 compatibility
Python 2's `ConfigParser` module is spelled `configparser` in Python 3. Closes https://github.com/curl/curl/pull/4484
This commit is contained in:
parent
a626fa128c
commit
ee63837732
@ -24,11 +24,14 @@
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
# unicode_literals)
|
||||
import argparse
|
||||
import ConfigParser
|
||||
import os
|
||||
import sys
|
||||
import logging
|
||||
import tempfile
|
||||
try: # Python 3
|
||||
import configparser
|
||||
except ImportError: # Python 2
|
||||
import ConfigParser as configparser
|
||||
|
||||
# Import our curl test data helper
|
||||
import curl_test_data
|
||||
@ -58,7 +61,7 @@ def smbserver(options):
|
||||
f.write("{0}".format(pid))
|
||||
|
||||
# Here we write a mini config for the server
|
||||
smb_config = ConfigParser.ConfigParser()
|
||||
smb_config = configparser.ConfigParser()
|
||||
smb_config.add_section("global")
|
||||
smb_config.set("global", "server_name", "SERVICE")
|
||||
smb_config.set("global", "server_os", "UNIX")
|
||||
|
Loading…
Reference in New Issue
Block a user