diff options
author | Simon Warta <[email protected]> | 2017-02-26 20:58:58 +0100 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-02-26 21:04:29 +0100 |
commit | 438d96e6a8cb14f3d8d780623bf85936ceea361b (patch) | |
tree | bf306529588dab87865abbafe08974d43cae6f9a | |
parent | b8f5d6a62d7705a97efeff1979085b291e0c8fd0 (diff) |
Configure: Fix wrong variable name (credits to pylint)
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 2a7e5f87f..b4cea7af7 100755 --- a/configure.py +++ b/configure.py @@ -2358,7 +2358,7 @@ def main(argv=None): time.sleep(0.1) # Final attempt, pass any exceptions up to caller. - os.makedirs(dir) + os.makedirs(directory) try: if options.clean_build_tree: |