1
Fork 0
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:
Steffo 2019-02-10 19:27:55 +01:00
parent f42ccc1c53
commit 55e95e100e
2 changed files with 3 additions and 1 deletions

3
db.py
View file

@ -5,8 +5,9 @@ import coloredlogs
from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker, relationship from sqlalchemy.orm import sessionmaker, relationship
from sqlalchemy.ext.hybrid import hybrid_property from sqlalchemy.ext.hybrid import hybrid_property
# noinspection PyUnresolvedReferences
from sqlalchemy import Column, BigInteger, Integer, String, DateTime, ForeignKey, Float, Enum, create_engine, \ 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 from sqlalchemy.inspection import inspect
import requests import requests
import errors import errors

View file

@ -2,6 +2,7 @@
# Requires SENTRY_AUTH_TOKEN and SENTRY_ORG set in .sentryclirc # Requires SENTRY_AUTH_TOKEN and SENTRY_ORG set in .sentryclirc
old=$(git rev-list HEAD -n 1) old=$(git rev-list HEAD -n 1)
git stash
git pull git pull
git lfs pull git lfs pull
new=$(git rev-list HEAD -n 1) new=$(git rev-list HEAD -n 1)