mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 03:28:07 +00:00
Fix typo in log messages of the C++ wrapper generator
This commit is contained in:
parent
145b05ee8d
commit
fe7c1cec74
1 changed files with 2 additions and 2 deletions
|
|
@ -746,14 +746,14 @@ def main():
|
|||
os.makedirs(includedir)
|
||||
except OSError as e:
|
||||
if e.errno != errno.EEXIST:
|
||||
print("Cannot create '{0}' dircetory: {1}".format(includedir, e.strerror))
|
||||
print("Cannot create '{0}' directory: {1}".format(includedir, e.strerror))
|
||||
sys.exit(1)
|
||||
|
||||
try:
|
||||
os.makedirs(srcdir)
|
||||
except OSError as e:
|
||||
if e.errno != errno.EEXIST:
|
||||
print("Cannot create '{0}' dircetory: {1}".format(srcdir, e.strerror))
|
||||
print("Cannot create '{0}' directory: {1}".format(srcdir, e.strerror))
|
||||
sys.exit(1)
|
||||
|
||||
genwrapper = GenWrapper(includedir, srcdir, args.xmldir)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue