Fixing comment in mailparser and ident error in runner example

This commit is contained in:
Indigo 2019-08-09 12:48:59 +02:00
parent 2a5ef5ffdf
commit 9ac0bfd0eb
3 changed files with 5 additions and 2 deletions

4
.gitignore vendored
View File

@ -3,4 +3,6 @@ result/*
docs/*
*.pyc
.vs/*
/example_scr/scrapy/tutorial/.vs/*
/example_scr/scrapy/tutorial/.vs/*
*.sln
*.pyproj

View File

@ -19,5 +19,6 @@ def session_scope():
#all session.add will be done in session_scope(). tbd: remove individual commits from ORM_test.py
def run_my_program():
with session_scope() as session:
pass
#ThingOne().go(session)
#ThingTwo().go(session)

View File

@ -21,7 +21,7 @@ def main():
# exist.""")
# parser.add_argument('msgfile')
# args = parser.parse_args()
''' All of the above is commented out because not necessary in this case'''
with open("mysourcedirectory/mymailfilename", 'rb') as fp: