Activity log for bug #964900

Date Who What changed Old value New value Message
2012-03-26 00:52:27 Eike bug added bug
2012-03-26 00:52:28 Eike bug-repo-syncer: importance Undecided Low
2012-03-26 00:52:28 Eike bug-repo-syncer: status New Confirmed
2012-03-26 00:52:28 Eike bug-repo-syncer: milestone 0.3.0
2012-03-26 00:52:30 Eike summary dummy Damaged bug, was: Changing bug attribute raises exception, if no attribute was previously read.
2012-03-26 00:52:30 Eike description dummy When a program wants to change attributes of a bug, it must first read one attribute of the bug; otherwise the program fails with an exception from deep inside Launchpadlib. This script triggers the error: from launchpadlib.launchpad import Launchpad launchpad = Launchpad.login_with("bug-repo-syncer", "production") lp_task = launchpad.load(     'https://api.launchpad.net/1.0/bug-repo-syncer/+bug/934181') lp_bug = lp_task.[@[@BUGLINK "bug #Un-commenting"@lp @]@] this makes the error go away. #lp_bug.title lp_bug.title = "Test bug" lp_bug.description = "A bug for testing Launchpadlib." #Fails with: #Traceback (most recent call last): # File "lp_problem.py", line 8, in <module> # lp_bug.title = "Test bug" # File "/usr/local/lib/python2.7/ #site-packages/lazr/restfulclient/resource.py", line 692, in __setattr__ # if not self.lp_has_parameter(name): # File "/usr/local/lib/python2.7/ #site-packages/lazr/restfulclient/resource.py", line 206, in lp_has_parameter # return self._get_external_param_name(param_name) is not None # File "/usr/local/lib/python2.7/ #site-packages/lazr/restfulclient/resource.py", line 349, in # _get_external_param_name # if self._wadl_resource.get_parameter(name): # File "/usr/local/lib/python2.7/site-packages/wadllib/application.py", #line 452, in get_parameter # definition = self._find_representation_definition(media_type) # File "/usr/local/lib/python2.7/site-packages/wadllib/application.py", #line 564, in _find_representation_definition # "Resource is not bound to any representation, and no media " #wadllib.application.NoBoundRepresentationError: Resource is not bound to any # representation, and no media media type was specified.
2012-03-26 01:09:59 Eike bug-repo-syncer: status Confirmed Invalid