Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Here is an example module installation for Soundex. Repeat this for other module
```shell
mkdir modules
cd modules
git clone git://github.com/copyninja/Soundex.git
git clone git@github.com:Project-SILPA/Soundex.git
cd Soundex
python setup.py install
```
Expand Down
2 changes: 1 addition & 1 deletion silpa.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@ def webfonts_gallery():
main_page=BASEURL, modules=enabled_modules)

if __name__ == '__main__':
app.run()
app.run('0.0.0.0')
2 changes: 1 addition & 1 deletion webbridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def get(self):
return render_template('credits.html', title="Credits",
main_page=BASEURL, modules=enabled_modules)
elif request.path == BASEURL + "Contact":
return render_template('contact.html', title="Credits",
return render_template('contact.html', title="Contact",
main_page=BASEURL, modules=enabled_modules)

elif len(request.args) == 0:
Expand Down