Skip to content

Commit

Permalink
[script.module.web-pdb] 1.5.6+matrix.1
Browse files Browse the repository at this point in the history
  • Loading branch information
romanvm committed Dec 30, 2020
1 parent e825b9e commit 7db43dc
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 37 deletions.
6 changes: 2 additions & 4 deletions script.module.web-pdb/addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.web-pdb"
name="Web-PDB"
version="1.5.5+matrix.1"
version="1.5.6+matrix.1"
provider-name="Roman V.M.">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
Expand All @@ -22,8 +22,6 @@
<icon>icon.png</icon>
<screenshot>resources/screenshot.jpg</screenshot>
</assets>
<news>- 1.5.5: Fixed deprecated Kodi logging levels.
- 1.5.4: Fixed info dialog in Kodi &quot;Matrix&quot;.
- 1.5.3: Fixed a rare issue when a debugger session cannot be started.</news>
<news>- 1.5.6: Fixed not being able to assign a local variable via the debugger console.</news>
</extension>
</addon>
6 changes: 3 additions & 3 deletions script.module.web-pdb/libs/web_pdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ def do_inspect(self, arg):
i(nspect) object
Inspect an object
"""
if arg in self.curframe.f_locals:
obj = self.curframe.f_locals[arg]
if arg in self.curframe_locals:
obj = self.curframe_locals[arg]
elif arg in self.curframe.f_globals:
obj = self.curframe.f_globals[arg]
else:
Expand Down Expand Up @@ -213,7 +213,7 @@ def get_locals(self):
:return: a listing of ``var = value`` pairs sorted alphabetically
:rtype: unicode
"""
return self._format_variables(self.curframe.f_locals)
return self._format_variables(self.curframe_locals)

def remove_trace(self, frame=None):
"""
Expand Down
22 changes: 7 additions & 15 deletions script.module.web-pdb/libs/web_pdb/static/bundle.min.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
a75b3749198c45851e85e0ed6de0d7e01c9929f46e9faa77d91aed4a4fb156c2 bundle.min.js
44d15b3f2f94eb4fd016f539d421d9e052a55e77dce513ba1d3ec3fe73a1084a bundle.min.js
16 changes: 3 additions & 13 deletions script.module.web-pdb/libs/web_pdb/static/styles.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
e8999e7b3b4963f1ae004bf862717605166b7f604198ea6a814be2e33f40413b styles.min.css
c69f3afa25647e7eeb45402621a59f83d3007005fb4c54f27a19f58e4358058a styles.min.css

0 comments on commit 7db43dc

Please sign in to comment.