Opened 18 years ago
Closed 18 years ago
#4697 closed defect (fixed)
MythDB scope error in python bindings
Reported by: | Owned by: | Anduin Withers | |
---|---|---|---|
Priority: | minor | Milestone: | 0.21 |
Component: | mythtv | Version: | head |
Severity: | medium | Keywords: | |
Cc: | Ticket locked: | no |
Description
in init.py we import all * from all the various modules for convinience. In MythTV.py and MythVideo.py MythDB is imported as a module into the package global scope which then hides the MythDB class which was in the global scope.
This breaks find_meta.py and other things.
Patch attached.
Attachments (1)
Change History (4)
by , 18 years ago
Attachment: | mythtv_python_bindings_global_fix.diff added |
---|
comment:1 by , 18 years ago
Milestone: | unknown → 0.21 |
---|---|
Owner: | changed from | to
Status: | new → assigned |
comment:2 by , 18 years ago
Note:
See TracTickets
for help on using tickets.
(In [16140]) References #4697, #4703
Fixes some indent and import problems. Thanks to Hadley Rich for finding and patching these.