Skip to content

Commit b5f5766

Browse files
committed
default_url
1 parent e9d1a69 commit b5f5766

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

examples/simple/simple_ext1/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class SimpleApp1(ExtensionApp):
1212
extension_name = "simple_ext1"
1313

1414
# Te url that your extension will serve its homepage.
15-
default_url = '/default'
15+
default_url = '/simple_ext1/default'
1616

1717
# Should your extension expose other server extensions when launched directly?
1818
load_other_extensions = True

examples/simple/simple_ext11/application.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ class SimpleApp11(SimpleApp1):
1717
# The name of the extension.
1818
extension_name = "simple_ext11"
1919

20+
# Te url that your extension will serve its homepage.
21+
default_url = '/simple_ext11/default'
22+
2023
# Local path to static files directory.
2124
static_paths = [
2225
DEFAULT_STATIC_FILES_PATH

0 commit comments

Comments
 (0)