Skip to content

Commit b6af973

Browse files
committed
updates
1 parent 8b38df3 commit b6af973

File tree

5 files changed

+7
-19
lines changed

5 files changed

+7
-19
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
venv
33
*~
44
.DS_Store
5+
env

app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Imports
33
#------------------------------------------------------------------------------#
44

5-
from flask import *
5+
from flask import * # do not use '*'; actually input the dependencies
66
from flask.ext.sqlalchemy import SQLAlchemy
77
import logging
88
from logging import Formatter, FileHandler

error.log

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,14 +1 @@
1-
2013-02-23 20:40:44,717 INFO: errors [in app.py:50]
2-
2013-02-23 20:40:44,908 INFO: errors [in app.py:50]
3-
2013-02-23 20:41:29,389 INFO: errors [in app.py:50]
4-
2013-02-23 20:41:49,729 INFO: errors [in app.py:51]
5-
2013-02-23 20:41:50,958 INFO: errors [in app.py:52]
6-
2013-02-23 20:45:05,391 INFO: errors [in app.py:52]
7-
2013-02-23 20:47:41,542 INFO: errors [in app.py:55]
8-
2013-02-23 20:50:38,048 INFO: errors [in app.py:71]
9-
2013-02-23 20:50:38,223 INFO: errors [in app.py:71]
10-
2013-02-23 20:52:44,673 INFO: errors [in app.py:71]
11-
2013-02-23 20:52:44,845 INFO: errors [in app.py:71]
12-
2013-02-23 20:55:59,383 INFO: errors [in app.py:71]
13-
2013-02-23 20:55:59,560 INFO: errors [in app.py:71]
14-
2013-02-23 21:00:40,516 INFO: errors [in app.py:72]
1+

models.py

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
# set your classes here
1515

16-
1716
'''
1817
class User(Base):
1918
__tablename__ = 'Users'

requirements.txt

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
Flask
2-
Flask-WTF
3-
Flask-SQLAlchemy
1+
Flask==0.10.1
2+
Flask-SQLAlchemy==1.0
3+
Flask-WTF==0.8.4
4+

0 commit comments

Comments
 (0)