~crossbar/crossbar/trunk

« back to all changes in this revision

Viewing changes to bin/crossbar

  • Committer: Tobias Oberstein
  • Date: 2015-08-08 17:33:16 UTC
  • mfrom: (768.1.43)
  • Revision ID: git-v1:d3b417ac7448176393afb2435b1d90669b6e629d
Merge pull request #380 from hawkowl/clitests

Test the CLI + make sure file logging actually works (especially on Py3) + make the CLI logger start on all functions

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
import os
 
4
import sys
 
5
 
 
6
sys.path.insert(0, os.path.abspath(os.getcwd()))
 
7
 
 
8
from crossbar.controller.cli import run
 
9
run()