Merge lp://staging/~izidor/gtg/pep8-cleaning into lp://staging/~gtg/gtg/old-trunk
Proposed by
Izidor Matušov
Status: | Merged |
---|---|
Merged at revision: | 1187 |
Proposed branch: | lp://staging/~izidor/gtg/pep8-cleaning |
Merge into: | lp://staging/~gtg/gtg/old-trunk |
Diff against target: |
6488 lines (+1437/-1315) 48 files modified
GTG/backends/__init__.py (+1/-1) GTG/core/__init__.py (+10/-8) GTG/core/datastore.py (+116/-110) GTG/core/plugins/api.py (+1/-4) GTG/core/plugins/engine.py (+6/-7) GTG/core/requester.py (+14/-15) GTG/core/tag.py (+15/-9) GTG/core/task.py (+14/-10) GTG/core/treefactory.py (+14/-17) GTG/gtk/browser/browser.py (+235/-211) GTG/gtk/crashhandler.py (+6/-5) GTG/gtk/dbuswrapper.py (+2/-2) GTG/gtk/editor/editor.py (+51/-51) GTG/gtk/editor/taskview.py (+79/-79) GTG/plugins/bugzilla/__init__.py (+2/-1) GTG/plugins/bugzilla/bug.py (+3/-2) GTG/plugins/bugzilla/bugzilla.py (+5/-7) GTG/plugins/bugzilla/server.py (+5/-1) GTG/plugins/geolocalized_tasks/__init__.py (+2/-1) GTG/plugins/geolocalized_tasks/geolocalized_tasks.py (+272/-282) GTG/plugins/geolocalized_tasks/marker.py (+10/-7) GTG/plugins/hamster/__init__.py (+2/-1) GTG/plugins/hamster/hamster.py (+119/-97) GTG/plugins/send_email/__init__.py (+2/-1) GTG/plugins/send_email/sendEmail.py (+0/-1) GTG/plugins/task_reaper/reaper.py (+3/-3) GTG/plugins/tomboy/__init__.py (+2/-1) GTG/plugins/tomboy/combobox_enhanced.py (+13/-6) GTG/plugins/tomboy/tomboy.py (+27/-30) GTG/tests/__init__.py (+2/-1) GTG/tests/signals_testing.py (+38/-22) GTG/tests/test_apidocs.py (+7/-8) GTG/tests/test_backend_tomboy.py (+39/-45) GTG/tests/test_backends.py (+2/-4) GTG/tests/test_bidict.py (+5/-15) GTG/tests/test_datastore.py (+11/-24) GTG/tests/test_interruptible.py (+7/-11) GTG/tests/test_networkmanager.py (+6/-0) GTG/tests/test_search_filter.py (+76/-36) GTG/tests/test_search_query.py (+79/-36) GTG/tests/test_signal_testing.py (+21/-11) GTG/tests/test_syncengine.py (+14/-23) GTG/tests/test_syncmeme.py (+15/-19) GTG/tests/test_tag.py (+7/-8) GTG/tests/test_tools_tags.py (+6/-4) GTG/tests/test_twokeydict.py (+11/-23) GTG/tests/tree_testing.py (+58/-53) Makefile (+2/-2) |
To merge this branch: | bzr merge lp://staging/~izidor/gtg/pep8-cleaning |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Lionel Dricot (community) | Approve | ||
Xuan (Sean) Hu (community) | Approve | ||
Review via email: mp+107398@code.staging.launchpad.net |
Description of the change
Cleaning the code to satisfy PEP8 lint script. The changes are mostly wrapping lines and removing white space at the end of lines.
To post a comment you must log in.
great work to make gtg more pep8 compatible.
one strange thing is that the change of Makefile is not listed in the diff. I do agree merge that change, too.