waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

bar.py (231B)


      1 #! /usr/bin/env python
      2 # encoding: utf-8
      3 # Calle Rosenquist, 2017 (xbreak)
      4 
      5 import os
      6 
      7 def read_resource():
      8 	filename = os.path.join(os.path.dirname(__file__), 'resource.txt')
      9 	with open(filename, 'r') as f:
     10 		return f.readline()
     11