fix typo
This commit is contained in:
parent
221424f208
commit
2bf79d894e
|
@ -35,7 +35,7 @@ options = {
|
||||||
'goocanvas', 'Crypto.PublicKey.DSA', 'Crypto.Hash.HMAC',
|
'goocanvas', 'Crypto.PublicKey.DSA', 'Crypto.Hash.HMAC',
|
||||||
'numbers', 'win32com.client', 'win32com.server', 'HTMLParser'],
|
'numbers', 'win32com.client', 'win32com.server', 'HTMLParser'],
|
||||||
'base': 'Win32GUI',
|
'base': 'Win32GUI',
|
||||||
'packages': ['cffi', 'cryptography']
|
'packages': ['cffi', 'cryptography'],
|
||||||
'bin_excludes': [
|
'bin_excludes': [
|
||||||
'iconv.dll', 'intl.dll', 'libatk-1.0-0.dll',
|
'iconv.dll', 'intl.dll', 'libatk-1.0-0.dll',
|
||||||
'libgdk_pixbuf-2.0-0.dll', 'libgdk-win32-2.0-0.dll',
|
'libgdk_pixbuf-2.0-0.dll', 'libgdk-win32-2.0-0.dll',
|
||||||
|
|
|
@ -43,7 +43,7 @@ log = logging.getLogger('gajim.c.optparser')
|
||||||
|
|
||||||
class OptionsParser:
|
class OptionsParser:
|
||||||
def __init__(self, filename):
|
def __init__(self, filename):
|
||||||
self.__filename = filename
|
self.__filename = os.path.realpath(filename)
|
||||||
self.old_values = {} # values that are saved in the file and maybe
|
self.old_values = {} # values that are saved in the file and maybe
|
||||||
# no longer valid
|
# no longer valid
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue