#!/usr/bin/env python

import os, sys
binDir = os.path.normpath(os.path.dirname(__file__))
if binDir in sys.path:
   sys.path.remove(binDir)

if __name__ == "__main__":
   from capturemock import commandline
   commandline()
else:
   del sys.modules["capturemock"]
   from capturemock import *
