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 20:02:36 +0200
commit2cc98e471ee5a3a0e9a9a3148449b4a74245aae6 (patch)
treee880e5478564b2615a10a9d3403a97491e5015fd /bin
parent80694a8fcfeb86ed69425ab6954b353b9a0ae854 (diff)
fix variable typo in upload_symbols.py
Change-Id: I96e15bc4cc29262ce602a616e036a97f3e20916e (cherry picked from commit 9d4881392eded9081228509769f94538c38646b8)
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}