just in case if anything was left out
This commit is contained in:
parent
88484394f2
commit
1ce7c32d07
13
ini.py
13
ini.py
@ -1,9 +1,10 @@
|
|||||||
from ConfigParser import ConfigParser
|
from ConfigParser import ConfigParser
|
||||||
|
from PyQt4.QtCore import QString
|
||||||
|
|
||||||
def read_ini(file, section, value, default=""):
|
def read_ini(file, section, value, default=""):
|
||||||
if isinstance(file, str):
|
if isinstance(file, str) or isinstance(file, QString):
|
||||||
conf = ConfigParser()
|
conf = ConfigParser()
|
||||||
conf.read(file)
|
conf.read(str(file))
|
||||||
else:
|
else:
|
||||||
conf = file
|
conf = file
|
||||||
|
|
||||||
@ -16,9 +17,9 @@ def read_ini(file, section, value, default=""):
|
|||||||
return default
|
return default
|
||||||
|
|
||||||
def read_ini_bool(file, section, value, default=False):
|
def read_ini_bool(file, section, value, default=False):
|
||||||
if isinstance(file, str):
|
if isinstance(file, str) or isinstance(file, QString):
|
||||||
conf = ConfigParser()
|
conf = ConfigParser()
|
||||||
conf.read(file)
|
conf.read(str(file))
|
||||||
else:
|
else:
|
||||||
conf = file
|
conf = file
|
||||||
|
|
||||||
@ -31,9 +32,9 @@ def read_ini_bool(file, section, value, default=False):
|
|||||||
return default
|
return default
|
||||||
|
|
||||||
def read_ini_int(file, section, value, default=0):
|
def read_ini_int(file, section, value, default=0):
|
||||||
if isinstance(file, str):
|
if isinstance(file, str) or isinstance(file, QString):
|
||||||
conf = ConfigParser()
|
conf = ConfigParser()
|
||||||
conf.read(file)
|
conf.read(str(file))
|
||||||
else:
|
else:
|
||||||
conf = file
|
conf = file
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user