Changeset 613c5fb26da9ceaa0224cada8cbf11c409b45d84


Ignore:
Timestamp:
02/15/11 12:12:20 (15 months ago)
Author:
Luper Rouch <luper.rouch@…>
Children:
eaad234fa0577e4412ead717f199965b5f4eeb70
Parents:
769a0faf49813610bc4dd3971dae59e3b1b27c5e
git-committer:
Luper Rouch <luper.rouch@…> (02/15/11 12:12:20)
Message:

added Qt bug report dialog

Location:
pyflu
Files:
6 added
2 edited

Legend:

Unmodified
Added
Removed
  • pyflu/pyflu/__init__.py

    r77bf72f r613c5fb  
    55 
    66def version(): 
    7     return "0.7" 
     7    return "0.8" 
    88 
  • pyflu/pyflu/containerutils.py

    r40703f5 r613c5fb  
    2121    components = [c for c in path.split("/") if c] 
    2222    if not len(components): 
    23         raise ValueError("empty settings path") 
     23        raise ValueError("empty path") 
    2424    try: 
    2525        c = d[components.pop(0)] 
     
    2727            c = c[components.pop(0)] 
    2828    except KeyError: 
    29         raise ValueError("invalid settings path '%s'" % path) 
     29        raise ValueError("invalid path: %s" % path) 
    3030    return c 
Note: See TracChangeset for help on using the changeset viewer.