Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Francis <francis@sugarlabs.org>2012-10-06 15:20:10 (GMT)
committer Daniel Francis <francis@sugarlabs.org>2012-10-06 15:20:10 (GMT)
commit00a078d7e98c42706bf9b4ca2fc391324596a644 (patch)
tree65c2fb02f9b5f9ad97928989a3b44de83704209b
parentfb129cd294995ac0d108d8c9b85730823d3a8158 (diff)
Remove Graph Plotter mentions
Sweetener was used on Graph Plotter, here I use the application name from info.py .
-rwxr-xr-xapplication.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/application.py b/application.py
index c50b69f..376cfd3 100755
--- a/application.py
+++ b/application.py
@@ -240,7 +240,7 @@ class Application(gtk.Window):
if __name__ == '__main__':
- logger.debug('Initializing Graph Plotter')
+ logger.debug('Initializing %s' % info.name)
import sys
if info.io_mode == info.DOCUMENT:
if len(sys.argv) > 1:
@@ -263,5 +263,5 @@ if __name__ == '__main__':
window.file_path = file_path
window.show()
gtk.main()
- logger.debug('Closing Graph Plotter')
+ logger.debug('Closing %s' % info.name)
exit()