Created
June 5, 2010 11:03
-
-
Save manish/426535 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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