Skip to content

Commit

Permalink
Update even more links to reflect the repository transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
BelKed committed Mar 4, 2024
1 parent dd3cdaf commit a772f83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/messages.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ <h1 class="title">Module <code>edupage_api.messages</code></h1>

changes = response.get(&#34;changes&#34;)
if changes == [] or changes is None:
raise RequestError(&#34;Failed to send message (edupage returned an empty &#39;changes&#39; array) - https://github.com/ivanhrabcak/edupage-api/issues/62&#34;)
raise RequestError(&#34;Failed to send message (edupage returned an empty &#39;changes&#39; array) - https://github.com/EdupageAPI/edupage-api/issues/62&#34;)

return int(changes[0].get(&#34;timelineid&#34;))</code></pre>
</details>
Expand Down Expand Up @@ -134,7 +134,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>

changes = response.get(&#34;changes&#34;)
if changes == [] or changes is None:
raise RequestError(&#34;Failed to send message (edupage returned an empty &#39;changes&#39; array) - https://github.com/ivanhrabcak/edupage-api/issues/62&#34;)
raise RequestError(&#34;Failed to send message (edupage returned an empty &#39;changes&#39; array) - https://github.com/EdupageAPI/edupage-api/issues/62&#34;)

return int(changes[0].get(&#34;timelineid&#34;))</code></pre>
</details>
Expand Down Expand Up @@ -190,7 +190,7 @@ <h3>Methods</h3>

changes = response.get(&#34;changes&#34;)
if changes == [] or changes is None:
raise RequestError(&#34;Failed to send message (edupage returned an empty &#39;changes&#39; array) - https://github.com/ivanhrabcak/edupage-api/issues/62&#34;)
raise RequestError(&#34;Failed to send message (edupage returned an empty &#39;changes&#39; array) - https://github.com/EdupageAPI/edupage-api/issues/62&#34;)

return int(changes[0].get(&#34;timelineid&#34;))</code></pre>
</details>
Expand Down
2 changes: 1 addition & 1 deletion edupage_api/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def send_message(
changes = response.get("changes")
if changes == [] or changes is None:
raise RequestError(
"Failed to send message (edupage returned an empty 'changes' array) - https://github.com/ivanhrabcak/edupage-api/issues/62"
"Failed to send message (edupage returned an empty 'changes' array) - https://github.com/EdupageAPI/edupage-api/issues/62"
)

return int(changes[0].get("timelineid"))

0 comments on commit a772f83

Please sign in to comment.