Skip to content

Instantly share code, notes, and snippets.

@manish
Created June 5, 2010 11:03
Show Gist options
  • Save manish/426535 to your computer and use it in GitHub Desktop.
Save manish/426535 to your computer and use it in GitHub Desktop.
from launchpadlib.launchpad import Launchpad
cachedir = "/home/me/.launchpadlib/cache/"
lpInst = Launchpad.login_anonymously('TestingDebianBTS', 'production', cachedir)
bugInst = lpInst.bugs[536692]
print bugInst.title
print bugInst.description
# Output is:
# logo and icons in the installer boot splash are distorted
# Binary package hint: gfxboot-theme-ubuntu
# The screen resolution needs to be taken into account when displaying the Ubuntu logo and icons so that no distortion of the images occurs.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment