Skip to content

Commit

Permalink
See changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
9b committed Mar 7, 2018
1 parent 8c6b187 commit d4abadd
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.rst
Expand Up @@ -57,6 +57,7 @@ Changelog
2017-03-07
~~~~~~~~~~
* Change: Removed non-python3 dict method
* Bugfix: Error in valid config checking

2017-02-24
~~~~~~~~~~
Expand Down
Binary file modified docs/doctrees/changelog.doctree
Binary file not shown.
Binary file modified docs/doctrees/code.doctree
Binary file not shown.
Binary file modified docs/doctrees/environment.pickle
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/html/_modules/pyhottop/pyhottop.html
Expand Up @@ -846,7 +846,7 @@ <h1>Source code for pyhottop.pyhottop</h1><div class="highlight"><pre>
<span class="sd"> interval checking, this is not liable to skew data that much and</span>
<span class="sd"> it&#39;s better than extreme false data.</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="n">config</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">get_roast_properties</span><span class="p">()[</span><span class="s1">&#39;last&#39;</span><span class="p">]</span>
<span class="n">config</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">get_roast_properties</span><span class="p">()[</span><span class="s1">&#39;last&#39;</span><span class="p">][</span><span class="s1">&#39;config&#39;</span><span class="p">]</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">config</span><span class="p">[</span><span class="s1">&#39;valid&#39;</span><span class="p">]:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s2">&quot;Invalid config at event time, retrying...&quot;</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">get_valid_config</span><span class="p">()</span>
Expand Down
1 change: 1 addition & 0 deletions docs/html/_sources/changelog.rst.txt
Expand Up @@ -5,6 +5,7 @@ Running list of changes to the library.
2017-03-07
~~~~~~~~~~
* Change: Removed non-python3 dict method
* Bugfix: Error in valid config checking

2017-02-24
~~~~~~~~~~
Expand Down
1 change: 1 addition & 0 deletions docs/html/changelog.html
Expand Up @@ -178,6 +178,7 @@ <h1>Changelog<a class="headerlink" href="#changelog" title="Permalink to this he
<h2>2017-03-07<a class="headerlink" href="#id1" title="Permalink to this headline"></a></h2>
<ul class="simple">
<li>Change: Removed non-python3 dict method</li>
<li>Bugfix: Error in valid config checking</li>
</ul>
</div>
<div class="section" id="id2">
Expand Down
2 changes: 1 addition & 1 deletion docs/html/searchindex.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyhottop/pyhottop.py
Expand Up @@ -686,7 +686,7 @@ def get_valid_config():
interval checking, this is not liable to skew data that much and
it's better than extreme false data.
"""
config = self.get_roast_properties()['last']
config = self.get_roast_properties()['last']['config']
if not config['valid']:
self._log.debug("Invalid config at event time, retrying...")
self.get_valid_config()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -8,7 +8,7 @@ def read(fname):

setup(
name='pyhottop',
version='0.2.4',
version='0.2.5',
description='Interface for interacting with Hottop KN-8828b-2k+ roasters',
url="https://github.com/splitkeycoffee/pyhottop",
author="Brandon Dixon",
Expand Down
1 change: 1 addition & 0 deletions source/changelog.rst
Expand Up @@ -5,6 +5,7 @@ Running list of changes to the library.
2017-03-07
~~~~~~~~~~
* Change: Removed non-python3 dict method
* Bugfix: Error in valid config checking

2017-02-24
~~~~~~~~~~
Expand Down

0 comments on commit d4abadd

Please sign in to comment.