Skip to content

Commit

Permalink
Changed message
Browse files Browse the repository at this point in the history
  • Loading branch information
miamibc committed Jun 11, 2021
1 parent 50aadde commit ac541c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ Optional, create virtual python environment and activate it
```shell
pip install --user virtualenv
virtualenv venv
source venv/bin/activate
```

Install requirements
Expand All @@ -31,7 +30,7 @@ Start server
python server.py
```

Open webpage [http://localhost:8080/](http://localhost:8080/) and You will see "Hello world" message.
Open webpage [http://localhost:8080/](http://localhost:8080/) and You will see `Show what you can. Learn what you don't` message.

Now try to build something more incredible, like things we listed [here in the project](https://github.com/BlackCrystal/python-wiki/projects/1).

Expand Down
2 changes: 1 addition & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class RootController(TGController):
@expose()
def index(self):
return 'Hello World'
return 'Show what you can. Learn what you don\'t'

from tg import MinimalApplicationConfigurator

Expand Down

0 comments on commit ac541c9

Please sign in to comment.