Skip to content

Commit 2da645a

Browse files
Merge pull request #42 from zhenhua32/master
Fixs static file + updates version
2 parents cb69657 + 5c0eddb commit 2da645a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

aiohttp_apispec/static/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<head>
55
<meta charset="UTF-8">
66
<title>Swagger UI</title>
7-
<link rel="stylesheet" type="text/css" href=".{{ static }}/swagger-ui.css" >
8-
<link rel="icon" type="image/png" href=".{{ static }}/favicon-32x32.png" sizes="32x32" />
9-
<link rel="icon" type="image/png" href=".{{ static }}/favicon-16x16.png" sizes="16x16" />
7+
<link rel="stylesheet" type="text/css" href="{{ static }}/swagger-ui.css" >
8+
<link rel="icon" type="image/png" href="{{ static }}/favicon-32x32.png" sizes="32x32" />
9+
<link rel="icon" type="image/png" href="{{ static }}/favicon-16x16.png" sizes="16x16" />
1010
<style>
1111
html
1212
{
@@ -33,8 +33,8 @@
3333
<body>
3434
<div id="swagger-ui"></div>
3535

36-
<script src=".{{ static }}/swagger-ui-bundle.js"> </script>
37-
<script src=".{{ static }}/swagger-ui-standalone-preset.js"> </script>
36+
<script src="{{ static }}/swagger-ui-bundle.js"> </script>
37+
<script src="{{ static }}/swagger-ui-standalone-preset.js"> </script>
3838
<script>
3939
window.onload = function() {
4040
// Begin Swagger UI call region

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def read(file_name):
1010

1111
setup(
1212
name='aiohttp-apispec',
13-
version='1.1.0',
13+
version='1.1.1',
1414
description='Build and document REST APIs with aiohttp and apispec',
1515
long_description=read('README.md'),
1616
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)