Files
python-keystoneclient/keystoneclient
Ankit Agrawal f00156ea9a List creation could be rewritten as a list literal
In _http_log_response method of session.py module,
list "string_parts' is created as below.

string_parts = ['RESP:']
string_parts.append('[%s]' % response.status_code)

Could be rewritten as

string_parts = [
    'RESP:',
    '[%s]' % response.status_code
]

TrivialFix

Change-Id: I83d04a71e030f3904c84cead4659c230393631db
2015-09-24 06:59:12 -07:00
..
2015-07-26 06:54:22 -05:00
2015-09-10 10:18:36 +10:00
2015-03-17 08:27:47 -05:00
2014-02-08 22:22:08 +08:00
2015-02-09 20:34:49 -06:00