Activity log for bug #1316870

Date Who What changed Old value New value Message
2014-05-07 01:47:54 xyj bug added bug
2014-05-07 01:48:14 xyj python-openstackclient: assignee xyj (xyj-asmy)
2014-05-07 01:52:43 Openstack Gerrit python-openstackclient: status New In Progress
2014-05-07 05:09:02 Steve Martinelli description (openstack) console log show bf871e90-0850-4f1d-a770-3126c1beb560 ERROR: cliff.app unsupported operand type(s) for +: 'NoneType' and 'int' parser.add_argument( '--lines', metavar='<num-lines>', type=int, default=None, help='Number of lines to display from the end of the log ' '(default=all)', ) without --lines option, we should retrieve all log for the server Error seen: (openstack) console log show bf871e90-0850-4f1d-a770-3126c1beb560 ERROR: cliff.app unsupported operand type(s) for +: 'NoneType' and 'int' Reason: The parser defaults the lines variable to None.         parser.add_argument(             '--lines',             metavar='<num-lines>',             type=int,             default=None,             help='Number of lines to display from the end of the log '                  '(default=all)',         ) However we end up trying to add an int value of 1 in some cases. data = server.get_console_output(length=parsed_args.lines + 1)
2014-05-07 14:45:17 Openstack Gerrit python-openstackclient: status In Progress Fix Committed
2014-06-13 21:21:02 Dean Troyer python-openstackclient: milestone m4
2014-06-20 21:18:23 Dean Troyer python-openstackclient: status Fix Committed Fix Released