Skip to content
Snippets Groups Projects
Commit 097c9cde authored by Dilawar Singh's avatar Dilawar Singh
Browse files

Fixed the syntax causing failure.

Conflicts:
	moose-core/python/moose/moose_test.py
parent a68f4f24
No related branches found
No related tags found
No related merge requests found
......@@ -26,11 +26,12 @@ import logging
from collections import defaultdict
import time
logfile_ = tempfile.NamedTemporaryFile( )
logging.basicConfig(
level=logging.DEBUG,
format='%(asctime)s %(name)-12s %(levelname)-8s %(message)s',
datefmt='%m-%d %H:%M',
filename='tests.log',
filename = logfile_.name,
filemode='w'
)
console = logging.StreamHandler()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment