Added missing os import.

This commit is contained in:
Armin Ronacher 2010-04-20 20:03:03 +02:00
parent 3053fcdb0d
commit f6b9efc1e9

View file

@ -35,8 +35,9 @@ The Testing Skeleton
In order to test that, we add a second module (
`flaskr_tests.py`) and create a unittest skeleton there::
import unittest
import os
import flaskr
import unittest
import tempfile
class FlaskrTestCase(unittest.TestCase):