Merge "Example as code, documentation template for sphinx build"
[domino.git] / lib / util / miscutil.py
1 #!/usr/bin/env python
2
3 #
4 # Licence statement goes here
5 #
6
7 def read_templatefile(temp_filename): 
8   f = open(temp_filename, 'r')
9   lines = f.read().splitlines()
10
11   return lines
12