<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-ironicclient.git/setup.py, branch queens-em</title>
<subtitle>opendev.org: openstack/python-ironicclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ironicclient.git/'/>
<entry>
<title>Updated from global requirements</title>
<updated>2017-03-02T11:54:32+00:00</updated>
<author>
<name>OpenStack Proposal Bot</name>
<email>openstack-infra@lists.openstack.org</email>
</author>
<published>2017-03-02T11:54:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ironicclient.git/commit/?id=6a8be93f84143797b477d662f203cc287571e45f'/>
<id>6a8be93f84143797b477d662f203cc287571e45f</id>
<content type='text'>
Change-Id: Ic16848935e551e72f49bd69b0b908ab2ded0094f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ic16848935e551e72f49bd69b0b908ab2ded0094f
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated from global requirements</title>
<updated>2015-09-17T12:16:41+00:00</updated>
<author>
<name>OpenStack Proposal Bot</name>
<email>openstack-infra@lists.openstack.org</email>
</author>
<published>2015-09-17T12:16:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ironicclient.git/commit/?id=b8691d07a060391a14c7507573af44e387f57049'/>
<id>b8691d07a060391a14c7507573af44e387f57049</id>
<content type='text'>
Change-Id: I4fad5cfe8797883cd1b808d3ab1a29aaf48fa230
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I4fad5cfe8797883cd1b808d3ab1a29aaf48fa230
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated from global requirements</title>
<updated>2015-07-15T19:49:48+00:00</updated>
<author>
<name>OpenStack Proposal Bot</name>
<email>openstack-infra@lists.openstack.org</email>
</author>
<published>2015-07-15T19:49:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ironicclient.git/commit/?id=00a67148ce75af14e472958c11fc103846c9451a'/>
<id>00a67148ce75af14e472958c11fc103846c9451a</id>
<content type='text'>
Change-Id: I40d8371a11795004f4350b47638da018f1183da7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I40d8371a11795004f4350b47638da018f1183da7
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated from global requirements</title>
<updated>2015-06-22T08:27:45+00:00</updated>
<author>
<name>OpenStack Proposal Bot</name>
<email>openstack-infra@lists.openstack.org</email>
</author>
<published>2015-06-22T08:27:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ironicclient.git/commit/?id=4f42f1d4f89122a773e0ec41b242437434fbea89'/>
<id>4f42f1d4f89122a773e0ec41b242437434fbea89</id>
<content type='text'>
Change-Id: I8132815004dcd3be8e0a56a6c538dc766228c2bd
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I8132815004dcd3be8e0a56a6c538dc766228c2bd
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated from global requirements</title>
<updated>2014-06-18T00:47:25+00:00</updated>
<author>
<name>OpenStack Proposal Bot</name>
<email>openstack-infra@lists.openstack.org</email>
</author>
<published>2014-06-18T00:47:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ironicclient.git/commit/?id=1709fef25f085ec4ebf2686deb636b3a03b00a7a'/>
<id>1709fef25f085ec4ebf2686deb636b3a03b00a7a</id>
<content type='text'>
Change-Id: Ie9ea577f35f1eb6fc71876be0d4f721887f1d769
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ie9ea577f35f1eb6fc71876be0d4f721887f1d769
</pre>
</div>
</content>
</entry>
<entry>
<title>Add UTF-8 coding lines to all Python files</title>
<updated>2014-05-31T11:22:44+00:00</updated>
<author>
<name>Martin Geisler</name>
<email>martin@geisler.net</email>
</author>
<published>2014-05-28T09:02:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ironicclient.git/commit/?id=af741ec2236619880fa902d68aef4a6ae6cef534'/>
<id>af741ec2236619880fa902d68aef4a6ae6cef534</id>
<content type='text'>
While not strictly necessary for files containing only ASCII
characters, adding a line with "coding: utf-8" can guard against
future SyntaxError's in case someone inserts a Unicode literal.

This commit adds such lines to all .py files. The syntax used by this
commit works with Python (of course). It also works with Emacs, which
will recognize the special "-*-" marker and use the "coding" variable
to correctly decode the file, even in an environment where UTF-8 is
not the default file encoding.

Existing coding lines were normalized to match the new lines added.

Partial-bug: #1325193
Change-Id: I58bf93fea711fd25890356a397e594bd820c99e3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
While not strictly necessary for files containing only ASCII
characters, adding a line with "coding: utf-8" can guard against
future SyntaxError's in case someone inserts a Unicode literal.

This commit adds such lines to all .py files. The syntax used by this
commit works with Python (of course). It also works with Emacs, which
will recognize the special "-*-" marker and use the "coding" variable
to correctly decode the file, even in an environment where UTF-8 is
not the default file encoding.

Existing coding lines were normalized to match the new lines added.

Partial-bug: #1325193
Change-Id: I58bf93fea711fd25890356a397e594bd820c99e3
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated from global requirements</title>
<updated>2014-05-02T09:08:07+00:00</updated>
<author>
<name>OpenStack Proposal Bot</name>
<email>openstack-infra@lists.openstack.org</email>
</author>
<published>2014-05-02T09:08:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ironicclient.git/commit/?id=37d136ef6212a3083a685307ce84ac6d02a6e992'/>
<id>37d136ef6212a3083a685307ce84ac6d02a6e992</id>
<content type='text'>
Change-Id: I00470eca0b3b4eb788e4184d8a37cac09bcd1260
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I00470eca0b3b4eb788e4184d8a37cac09bcd1260
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated from global requirements</title>
<updated>2013-10-01T16:14:48+00:00</updated>
<author>
<name>OpenStack Jenkins</name>
<email>jenkins@openstack.org</email>
</author>
<published>2013-10-01T16:14:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ironicclient.git/commit/?id=b3f5588104c095c924fe72e103c19055c993f12c'/>
<id>b3f5588104c095c924fe72e103c19055c993f12c</id>
<content type='text'>
Change-Id: I8e079a649487eec931d61a80be8ac2c23889371d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I8e079a649487eec931d61a80be8ac2c23889371d
</pre>
</div>
</content>
</entry>
<entry>
<title>Add initial files</title>
<updated>2013-09-05T23:35:21+00:00</updated>
<author>
<name>Chris Krelle</name>
<email>nobodycam@gmail.com</email>
</author>
<published>2013-09-05T00:15:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ironicclient.git/commit/?id=8136ec1b72e39b302452a01816013225fbe3b392'/>
<id>8136ec1b72e39b302452a01816013225fbe3b392</id>
<content type='text'>
Add initial files to the repo.

Change-Id: Ia6b0278fc9817f44e63507b54e7d7ad41bf4e219
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add initial files to the repo.

Change-Id: Ia6b0278fc9817f44e63507b54e7d7ad41bf4e219
</pre>
</div>
</content>
</entry>
</feed>
