Skip to content

Commit d010cda

Browse files
committed
Corrections diverses
1 parent 3ff63f5 commit d010cda

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

presentation-ictv/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ <h1>Plugins dans ICTV</h1>
155155
</section>
156156
<section id="ictv-doc">
157157
<h4 style="text-transform: inherit;">Une seule source d'information: la documentation officielle <a href="http://ictv.rtfd.io" target="_blank">http://ictv.rtfd.io</a></h4>
158-
<iframe class="stretch" src="http://ictv.rtfd.io"></iframe>
158+
<iframe class="stretch" src="https://ictv.readthedocs.io/en/latest/"></iframe>
159159
</section>
160160
<section id="plugin-schema">
161161
<h2>Execution</h2>
@@ -382,7 +382,7 @@ <h2>Capsule</h2>
382382
<h2>get_content</h2>
383383
<pre style="width: 95%;"><code data-trim style="max-height: none;">
384384
def get_content(channel_id):
385-
channel = Channel.get(channel_id)</code><code class="fragment" style="max-height: none;">
385+
channel = PluginChannel.get(channel_id)</code><code class="fragment" style="max-height: none;">
386386
logger_extra = {'channel_name': channel.name, 'channel_id': channel.id}
387387
logger = get_logger('img-grabber', channel)</code><code class="fragment" style="max-height: none;">
388388
url = channel.get_config_param('url')

presentation-python/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ <h2>Lists & tuples</h2>
147147
<section id="sets-dicts">
148148
<h2>Sets & dictionary</h2>
149149
<pre><code data-trim>
150-
odd_numbers = {1, 3, 5, 7, 9}capitals = {'Belgium': 'Brussels', 'France': 'Paris', 'Canada': 'Ottawa'}
150+
odd_numbers = {1, 3, 5, 7, 9}
151+
capitals = {'Belgium': 'Brussels', 'France': 'Paris', 'Canada': 'Ottawa'}
151152
</code></pre>
152153
<ul>
153154
<li class="fragment"><code>2 in odd_numbers</code> équivaut à <code>False</code></li>

0 commit comments

Comments
 (0)