Fixed error message. Changed coding style

This commit is contained in:
Tom Keffer
2017-01-12 08:09:35 -08:00
parent babc55b1cd
commit 7b6642fa4b
2 changed files with 13 additions and 7 deletions

View File

@@ -258,6 +258,14 @@ next_ts = int(time.mktime(next_dt.timetuple()))</pre>
extraneous "changed lines," trying to find the important stuff.
</li>
</ul>
<p>When invoking functions or instantiating classes, use the fully qualified name. Don't do this:</p>
<pre class="tty" style="opacity: 0.5">from datetime import dt
now = dt()</pre>
<p>Instead, do this:</p>
<pre class="tty">import datetime
now = datetime.datetime()</pre>
<h1>Glossary</h1>
<p>This is a glossary of terminology used throughout the code. </p>