~bhavi/locolint/locolint

« back to all changes in this revision

Viewing changes to locolint/functions/whoami.py

  • Committer: Paul Tagliamotne
  • Date: 2010-11-10 23:08:39 UTC
  • Revision ID: paultag@ubuntu.com-20101110230839-18n6gzpwjgiaovq0
fixing the line issues

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
                
16
16
        if lp.amICouncil( launchpad ):
17
17
                io.note("")
18
 
                io.note( _("It looks here that you're on the LoCo Council.") )
19
 
                io.note( _("Well done. Thanks for being you. You make Ubuntu") )
20
 
                io.note( _("great. Long live the Council members!") )
 
18
                io.note( _("It looks here that you're on the LoCo Council. Well done. Thanks for being you. You make Ubuntu great. Long live the Council members!") )
21
19
        else:
22
20
                io.note("")
23
 
                io.note( _("It looks like you're not on the LoCo Council") )
24
 
                io.note( _("That's OK, but you won't be able to exact change") )
25
 
                io.note( _("where you see fit. Oh well!") )
 
21
                io.note( _("It looks like you're not on the LoCo Council. That's OK, but you won't be able to exact change where you see fit. Oh well!") )
26
22
 
27
23
module.addModule(   "whoami", run_whoami );
28
24
module.addModDescr( "whoami", _( "If you forgot who you are, you can use this to recover your name. It also checks to see if you're on the LoCo Council or not." ))