Pulling in changes from skeleton master
authorEd Page <eopage@byu.net>
Wed, 29 Dec 2010 03:40:33 +0000 (21:40 -0600)
committerEd Page <eopage@byu.net>
Wed, 29 Dec 2010 03:40:33 +0000 (21:40 -0600)
src/__init__.py [changed mode: 0755->0644]
src/constants.py
src/gtk_toolbox.py

old mode 100755 (executable)
new mode 100644 (file)
index d34b733..4265cc3
@@ -1,21 +1 @@
 #!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-"""
-This file is part of Multilist.
-
-Multilist is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
-
-Multilist is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with Multilist.  If not, see <http://www.gnu.org/licenses/>.
-
-Copyright (C) 2008 Christoph Würstle
-"""
index 79ea779..eaa4bdf 100644 (file)
@@ -4,7 +4,7 @@ __pretty_app_name__ = "Multilist"
 __app_name__ = "multilist"
 __version__ = "0.3.13"
 __build__ = 0
-_data_path_ = os.path.join(os.path.expanduser("~"), ".multilist")
 __app_magic__ = 0xdeadbeef
+_data_path_ = os.path.join(os.path.expanduser("~"), ".%s" % __app_name__)
 _user_settings_ = "%s/settings.ini" % _data_path_
-_user_logpath_ = "%s/multilist.log" % _data_path_
+_user_logpath_ = "%s/%s.log" % (_data_path_, __app_name__)
index b81d444..784c871 100644 (file)
@@ -17,7 +17,7 @@ import gobject
 import gtk
 
 
-_moduleLogger = logging.getLogger("gtk_toolbox")
+_moduleLogger = logging.getLogger(__name__)
 
 
 def get_screen_orientation():