diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-07-06 19:59:24 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-07-06 19:59:24 +0200 |
commit | 9d4881392eded9081228509769f94538c38646b8 (patch) | |
tree | b8dff5383ec558b30213a8d8e720214815d75ecf /bin | |
parent | 5d8ac865bf32f37487c02a89c00d02cd3234ce1f (diff) |
fix variable typo in upload_symbols.py
Change-Id: I96e15bc4cc29262ce602a616e036a97f3e20916e
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/upload_symbols.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/upload_symbols.py b/bin/upload_symbols.py index 45fede08fb20..537675102aa9 100755 --- a/bin/upload_symbols.py +++ b/bin/upload_symbols.py @@ -32,7 +32,7 @@ def main(): user = config["CrashReport"]["User"] password = config["CrashReport"]["Password"] - files = {'symbols': open(args.symbol_dir, 'rb')} + files = {'symbols': open(args.symbols_dir, 'rb')} data = {'version': args.version, 'system': args.system, 'platform': platform.system() if args.platform is None else args.platform} |