Skip to content

Commit

Permalink
app modules: update copyright header, add ap architecture to dev info…
Browse files Browse the repository at this point in the history
…. Re nvaccess#16488.

Useful on ARM64: log app architecture (x86, AMD64, ARM64) as part of navigator object dev info.
  • Loading branch information
josephsl committed Aug 8, 2024
1 parent a748f9c commit 08d6859
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion source/appModuleHandler.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: UTF-8 -*-
# A part of NonVisual Desktop Access (NVDA)
# Copyright (C) 2006-2023 NV Access Limited, Peter Vágner, Aleksey Sadovoy, Patrick Zajda, Joseph Lee,
# Copyright (C) 2006-2024 NV Access Limited, Peter Vágner, Aleksey Sadovoy, Patrick Zajda, Joseph Lee,
# Babbage B.V., Mozilla Corporation, Julien Cochuyt, Leonard de Ruijter, Cyrille Bougot
# This file is covered by the GNU General Public License.
# See the file COPYING for more details.
Expand Down Expand Up @@ -832,6 +832,11 @@ def _get_devInfo(self) -> List[str]:
except Exception as e:
ret = f"exception: {e}"
info.append(f"appModule.helperLocalBindingHandle: {ret}")
try:
ret = repr(self.appArchitecture)
except Exception as e:
ret = f"exception: {e}"
info.append(f"appModule.appArchitecture: {ret}")
return info


Expand Down

0 comments on commit 08d6859

Please sign in to comment.