Ticket #1191 (closed defect: fixed)
python wrapper not operational
| Reported by: | kashif | Owned by: | ehabkost |
|---|---|---|---|
| Priority: | normal | Milestone: | OpenSync 0.40 |
| Component: | OpenSync: Python Wrapper | Version: | 0.39 |
| Severity: | normal | Keywords: | |
| Cc: | mark@… |
Description
importing the opensync module doesn't work and gives the error
import opensync
Traceback (most recent call last):
File "<stdin>", line 1, in <module> File "opensync.py", line 579
/*
when I convert the comments to python comments, this error disappears but another one pops up
import opensync
Traceback (most recent call last):
File "<stdin>", line 1, in <module> File "opensync.py", line 400, in <module>
class Engine(object):
File "opensync.py", line 443, in Engine
group = property(get_group)
NameError?: name 'get_group' is not defined
these errors are all over the file and the only way I could think of to get rid of them was to comment those lines or set the variable values to empty string or True
After that the module imports but I am not sure how operational it would be.
