diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-01-27 00:04:59 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-01-27 00:04:59 +0100 |
| commit | 15d7074f55a2c3dd38ce9877626be6ec32b448d2 (patch) | |
| tree | d00b0e0de23212eed1432c8661ac13e27728f107 /lib/actions | |
| parent | a4fd5bddb0f8c1b05b963cb8af9692f6c89f3dab (diff) | |
| download | enigma2-15d7074f55a2c3dd38ce9877626be6ec32b448d2.tar.gz enigma2-15d7074f55a2c3dd38ce9877626be6ec32b448d2.zip | |
fixes for python 2.6 by Moritz Venn
Diffstat (limited to 'lib/actions')
| -rw-r--r-- | lib/actions/parseactions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/actions/parseactions.py b/lib/actions/parseactions.py index 4ab71af7..2462a751 100644 --- a/lib/actions/parseactions.py +++ b/lib/actions/parseactions.py @@ -65,7 +65,7 @@ def do_file(f, mode): except: pass - raise "action enum must be simple." + raise Exception("action enum must be simple.") counter = 0 @@ -82,7 +82,7 @@ def do_file(f, mode): if counter: if t != ",": - raise "no comma" + raise Exception("no comma") t = tokens.next() if firsthit: |
