On Aug 9, 2007, at 18:48, Carsten Koch wrote: Workbench does not work with wxPython > 2.6. The attached patch fixes that.
I've committed a change to support 2.6 and 2.8.
2.7 is a development version and not worth supporting.
Barry
Carsten.
Index: src/pysvn_workbench/wb_main.py =================================================================== --- src/pysvn_workbench/wb_main.py (revision 49466) +++ src/pysvn_workbench/wb_main.py (revision 49468) # make sure that we get 2.6 and not an earlier version try: import wxversion - wxversion.select('2.6') + wxversion.select(['2.6', '2.7', '2.8']) except: pass
Property changes on: . ___________________________________________________________________ Name: documentation_changes + no Name: mod_author + cc Name: reviewers + cko Name: issues_resolved + Name: mod_description + Workbench required wxPython version 2.6, but some machines have a newer version installed. Add 2.7 and 2.8 to the list of allowed wxPython versions.
Name: mod_status + new
--------------------------------------------------------------------- To unsubscrib e, e-mail: dev-unsubscribe pysvn.tigris.org">dev-unsubscribe pysvn.tigris.orgFor additional commands, e-mail: dev-help pysvn.tigris.org">dev-help pysvn.tigris.org
|