s/jaemendo/jamaendo/g
authorKristoffer Grönlund <kristoffer.gronlund@purplescout.se>
Fri, 1 Jan 2010 14:01:31 +0000 (15:01 +0100)
committerKristoffer Grönlund <kristoffer.gronlund@purplescout.se>
Fri, 1 Jan 2010 14:01:31 +0000 (15:01 +0100)
jamaui/settings.py
jamaui/util.py

index 1a8352a..c1dcc61 100644 (file)
@@ -35,7 +35,7 @@ class Settings(object):
         }
 
     def __init__(self):
-        self.__savename = "/tmp/jaemendo_uisettings"
+        self.__savename = "/tmp/jamaendo_uisettings"
         for k,v in self.defaults.iteritems():
             setattr(self, k, v)
 
index d6e4054..aa72c82 100644 (file)
@@ -50,10 +50,10 @@ def jsonprint(x):
 def find_resource(name):
     if os.path.isfile(os.path.join('data', name)):
         return os.path.join('data', name)
-    elif os.path.isfile(os.path.join('/opt/jaemendo', name)):
-        return os.path.join('/opt/jaemendo', name)
-    elif os.path.isfile(os.path.join('/usr/share/jaemendo', name)):
-        return os.path.join('/usr/share/jaemendo', name)
+    elif os.path.isfile(os.path.join('/opt/jamaendo', name)):
+        return os.path.join('/opt/jamaendo', name)
+    elif os.path.isfile(os.path.join('/usr/share/jamaendo', name)):
+        return os.path.join('/usr/share/jamaendo', name)
     else:
         return None