~bkerensa/ubuntu-dev-tools/fix-for-1068049

« back to all changes in this revision

Viewing changes to lp-shell

  • Committer: Benjamin Drung
  • Date: 2010-12-27 13:21:01 UTC
  • Revision ID: bdrung@ubuntu.com-20101227132101-k2cro3y42jzq7hm2
Wrap all long lines in Python scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
        print 'I: Falling back to "1.0".'
51
51
 
52
52
if options.anonymous:
53
 
    lp = Launchpad.login_anonymously('udt-lp-shell', instance, version=api_version)
54
 
    banner = 'Connected anonymously to LP service "%s" with API version "%s":' % (
55
 
            instance, api_version)
 
53
    lp = Launchpad.login_anonymously('udt-lp-shell', instance,
 
54
                                     version=api_version)
 
55
    banner = 'Connected anonymously to LP service "%s" with API version "%s":' \
 
56
             % (instance, api_version)
56
57
else:
57
58
    lp = Launchpad.login_with('udt-lp-shell', instance, version=api_version)
58
 
    banner = 'Connected to LP service "%s" with API version "%s":' % (
59
 
            instance, api_version)
 
59
    banner = 'Connected to LP service "%s" with API version "%s":' % \
 
60
             (instance, api_version)
60
61
 
61
62
banner += '\nNote: LP can be accessed through the "lp" object.'
62
63