mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-02-13 00:07:39 +01:00
11 lines
186 B
Python
11 lines
186 B
Python
#
|
|
# baddiefinder settings wrapper
|
|
#
|
|
|
|
from configparser import ConfigParser
|
|
|
|
def load(fname):
|
|
c = ConfigParser()
|
|
with open(fname) as f:
|
|
c.read_file(f, fname)
|
|
return c
|