aboutsummaryrefslogtreecommitdiffstats
path: root/lib/util/miscutil.py
blob: 4afa565f494164bf32a206c2a0e96e9e4dbe4f60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python

#
# Licence statement goes here
#

def read_templatefile(temp_filename): 
  f = open(temp_filename, 'r')
  lines = f.read().splitlines()

  return lines