mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
Fix the homepage not being displayed
This commit is contained in:
parent
f42ccc1c53
commit
55e95e100e
2 changed files with 3 additions and 1 deletions
3
db.py
3
db.py
|
@ -5,8 +5,9 @@ import coloredlogs
|
|||
from sqlalchemy.ext.declarative import declarative_base
|
||||
from sqlalchemy.orm import sessionmaker, relationship
|
||||
from sqlalchemy.ext.hybrid import hybrid_property
|
||||
# noinspection PyUnresolvedReferences
|
||||
from sqlalchemy import Column, BigInteger, Integer, String, DateTime, ForeignKey, Float, Enum, create_engine, \
|
||||
UniqueConstraint, PrimaryKeyConstraint, Boolean, LargeBinary, Text, Date
|
||||
UniqueConstraint, PrimaryKeyConstraint, Boolean, LargeBinary, Text, Date, func
|
||||
from sqlalchemy.inspection import inspect
|
||||
import requests
|
||||
import errors
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
# Requires SENTRY_AUTH_TOKEN and SENTRY_ORG set in .sentryclirc
|
||||
|
||||
old=$(git rev-list HEAD -n 1)
|
||||
git stash
|
||||
git pull
|
||||
git lfs pull
|
||||
new=$(git rev-list HEAD -n 1)
|
||||
|
|
Loading…
Reference in a new issue