X-Git-Url: http://git.maemo.org/git/?p=quicknote;a=blobdiff_plain;f=src%2Fquicknote_gtk.py;h=92482fa9c501f1be2a4a76dcff956e2ba78edb5a;hp=02cc124d0826428195122f855b532efc43671f16;hb=f65e95591ddf52734af3102f1db52c903b11590a;hpb=11c2c6f87cc0d2447b3bbd11b16cd2c11e67c6b6 diff --git a/src/quicknote_gtk.py b/src/quicknote_gtk.py index 02cc124..92482fa 100644 --- a/src/quicknote_gtk.py +++ b/src/quicknote_gtk.py @@ -50,7 +50,7 @@ except NameError: _ = lambda x: x -_moduleLogger = logging.getLogger("quicknote_gtk") +_moduleLogger = logging.getLogger(__name__) PROFILE_STARTUP = False @@ -63,8 +63,6 @@ class QuicknoteProgram(hildonize.get_app_class()): super(QuicknoteProgram, self).__init__() self._clipboard = gtk.clipboard_get() - dblog = os.path.join(self._user_data, "quicknote.log") - _moduleLogger.info('Starting quicknote') self._wordWrapEnabled = False @@ -459,7 +457,7 @@ class QuicknoteProgram(hildonize.get_app_class()): dialog.set_name(constants.__pretty_app_name__) dialog.set_version(constants.__version__) dialog.set_copyright("") - dialog.set_website("http://axique.de/index.php?f=Quicknote") + dialog.set_website("http://quicknote.garage.maemo.org") comments = _("%s is a note taking program; it is optimised for quick save and search of notes") % constants.__pretty_app_name__ dialog.set_comments(comments) dialog.set_authors(["Christoph Wurstle ", "Ed Page (Blame him for the most recent bugs)"])