aboutsummaryrefslogtreecommitdiffstats
path: root/commands/caps
blob: c47319f52b750f156055b9e7e8f6b9b5bd6c8d01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /usr/bin/env python
import imp
import os

def load_config(filename):
  dirname = os.path.dirname(filename)
  modname, ext = os.path.splitext(os.path.basename(filename))
  file, pathname, description = imp.find_module(modname, [ dirname ])
  return imp.load_module(modname, file, pathname, description)

config = load_config(os.environ['config_filename'])
print(' '.join(filter(None,[ x.get('capname',None) for x in config.commands])))