summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2022-07-06 19:59:24 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2022-07-06 19:59:24 +0200
commit9d4881392eded9081228509769f94538c38646b8 (patch)
treeb8dff5383ec558b30213a8d8e720214815d75ecf /bin
parent5d8ac865bf32f37487c02a89c00d02cd3234ce1f (diff)
fix variable typo in upload_symbols.py
Change-Id: I96e15bc4cc29262ce602a616e036a97f3e20916e
Diffstat (limited to 'bin')
-rwxr-xr-xbin/upload_symbols.py2
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}