Skip to content

Commit

Permalink
migrated to flask-restx, updated submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Feb 15, 2020
1 parent dc89d60 commit e2d57b7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion aw-qt
Submodule aw-qt updated 0 files
2 changes: 1 addition & 1 deletion aw-server
2 changes: 1 addition & 1 deletion aw-watcher-afk
2 changes: 1 addition & 1 deletion aw-watcher-window
8 changes: 4 additions & 4 deletions aw.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
import os
import platform
import aw_core
import flask_restplus
import flask_restx

aw_core_path = os.path.dirname(aw_core.__file__)
restplus_path = os.path.dirname(flask_restplus.__file__)
restx_path = os.path.dirname(flask_restx.__file__)

aws_location = "aw-server/"
aw_qt_location = "aw-qt/"
Expand Down Expand Up @@ -36,8 +36,8 @@ aw_server_a = Analysis(['aw-server/__main__.py'],
datas=[
(aws_location + 'aw_server/static', 'aw_server/static'),

(os.path.join(restplus_path, 'templates'), 'flask_restplus/templates'),
(os.path.join(restplus_path, 'static'), 'flask_restplus/static'),
(os.path.join(restx_path, 'templates'), 'flask_restx/templates'),
(os.path.join(restx_path, 'static'), 'flask_restx/static'),
(os.path.join(aw_core_path, 'schemas'), 'aw_core/schemas')
],
hiddenimports=[],
Expand Down

0 comments on commit e2d57b7

Please sign in to comment.