Skip to content

Commit 07f05dd

Browse files
authored
Fix installation documentation (#122)
* Fix installation documentation * Other documentation fixes
1 parent c71ace5 commit 07f05dd

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/changelog/0.4.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Bug fixes
9494
* Fix :py:attr:`botogram.Message.forward_from` giving wrong information with
9595
signed channel posts (`issue 80`_)
9696

97-
.. _issue 80: https://github.com/pietroalbini/botogram/issues/80
97+
.. _issue 80: https://github.com/python-botogram/botogram/issues/80
9898

9999

100100
Deprecated features

docs/install.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ really easily with the `pip`_ command-line utility. Before installing it, be
1212
sure to have Python_ 3.4 (or a newer version), pip_, virtualenv_ and
1313
setuptools_ installed on your system. Then, issue the following command::
1414

15-
$ python3 -m pip install botogram
15+
$ python3 -m pip install botogram2
1616

1717
Perfect, botogram is now installed! Now, you can follow the
1818
":ref:`tutorial`" chapter if you want to create a bot right now!
@@ -26,7 +26,7 @@ If you don't mind having some instability or bugs, and you want the latest
2626
features not yet released, you can clone the `botogram git repository`_,
2727
install `virtualenv`_, `invoke`_ and execute the installation from source::
2828

29-
$ git clone https://github.com/pietroalbini/botogram.git
29+
$ git clone https://github.com/python-botogram/botogram.git
3030
$ cd botogram
3131
$ invoke install
3232

@@ -77,7 +77,7 @@ something globally. In this case, you can ask your system administrator to
7777
execute the above command, or you can wrap the command with sudo, if you
7878
are allowed to do so::
7979

80-
$ sudo pip3 install botogram
80+
$ sudo python3 -m pip install botogram2
8181

8282
If you installed from source, you need to use this command instead of the last
8383
one::

tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
PROJECT = "botogram"
5454
VERSION = "1.0.dev0"
5555

56-
ISSUES = "https://github.com/pietroalbini/botogram/issues"
57-
COPYRIGHT = "Pietro Albini <[email protected]>"
56+
ISSUES = "https://github.com/python-botogram/botogram/issues"
57+
COPYRIGHT = "The Botogram Authors <[email protected]>"
5858

5959

6060
def create_env(name, requirements=False, self=False, force=False):

website/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ <h2>Python framework for Telegram bots</h2>
4040
</div>
4141
<nav>
4242
<ul>
43-
<li><a href="https://github.com/pietroalbini/botogram">
43+
<li><a href="https://github.com/python-botogram/botogram">
4444
Source code
4545
</a></li>
4646
<li><a href="/docs">

0 commit comments

Comments
 (0)