Author: Alessio Treglia <alessio@debian.org>
Description: Python string exceptions no more allowed in Python 2.6.
Forwarded: https://bugs.launchpad.net/jokosher/+bug/604694
Bug-Debian: http://bugs.debian.org/585238
---
 Jokosher/Globals.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- jokosher.orig/Jokosher/Globals.py
+++ jokosher/Jokosher/Globals.py
@@ -424,7 +424,7 @@ for dirs in create_dirs:
 		try:
 			os.makedirs(new_dir)
 		except:
-			raise "Failed to create user config directory %s" % new_dir
+			raise Exception("Failed to create user config directory %s" % new_dir)
 	
 	if jokosher_dir_empty and os.path.isdir(old_dir) and os.path.isdir(new_dir):
 		CopyAllFiles(old_dir, new_dir)
