bin/upload_symbols.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2cc98e471ee5a3a0e9a9a3148449b4a74245aae6
Author:     Christian Lohmaier <lohmaier+libreoff...@googlemail.com>
AuthorDate: Wed Jul 6 19:59:24 2022 +0200
Commit:     Christian Lohmaier <lohmaier+libreoff...@googlemail.com>
CommitDate: Wed Jul 6 20:02:36 2022 +0200

    fix variable typo in upload_symbols.py
    
    Change-Id: I96e15bc4cc29262ce602a616e036a97f3e20916e
    (cherry picked from commit 9d4881392eded9081228509769f94538c38646b8)

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}

Reply via email to