Changeset 613c5fb26da9ceaa0224cada8cbf11c409b45d84
- Timestamp:
- 02/15/11 12:12:20 (15 months ago)
- Children:
- eaad234fa0577e4412ead717f199965b5f4eeb70
- Parents:
- 769a0faf49813610bc4dd3971dae59e3b1b27c5e
- git-committer:
- Luper Rouch <luper.rouch@…> (02/15/11 12:12:20)
- Location:
- pyflu
- Files:
-
- 6 added
- 2 edited
-
files/qt/bug_report_dialog.ui (added)
-
pyflu/__init__.py (modified) (1 diff)
-
pyflu/containerutils.py (modified) (2 diffs)
-
pyflu/qt/bug_report/__init__.py (added)
-
pyflu/qt/bug_report/dialog.py (added)
-
pyflu/qt/bug_report/settings.py (added)
-
pyflu/qt/bug_report/tb.py (added)
-
pyflu/qt/bug_report/ui_dialog.py (added)
Legend:
- Unmodified
- Added
- Removed
-
pyflu/pyflu/__init__.py
r77bf72f r613c5fb 5 5 6 6 def version(): 7 return "0. 7"7 return "0.8" 8 8 -
pyflu/pyflu/containerutils.py
r40703f5 r613c5fb 21 21 components = [c for c in path.split("/") if c] 22 22 if not len(components): 23 raise ValueError("empty settingspath")23 raise ValueError("empty path") 24 24 try: 25 25 c = d[components.pop(0)] … … 27 27 c = c[components.pop(0)] 28 28 except KeyError: 29 raise ValueError("invalid settings path '%s'" % path)29 raise ValueError("invalid path: %s" % path) 30 30 return c
Note: See TracChangeset
for help on using the changeset viewer.
