~ubuntu-branches/ubuntu/vivid/mago/vivid

« back to all changes in this revision

Viewing changes to bin/mago

  • Committer: Bazaar Package Importer
  • Author(s): Ara Pulido
  • Date: 2009-08-04 09:21:40 UTC
  • Revision ID: james.westby@ubuntu.com-20090804092140-mnc0rm2tr7smo107
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
import sys, os
 
3
 
 
4
os.environ['NO_GAIL'] = '1'
 
5
os.environ['NO_AT_BRIDGE'] = '1'
 
6
 
 
7
from mago.cmd.main import main
 
8
 
 
9
if __name__ == "__main__":
 
10
    # Pass complete file name as program name
 
11
    args = sys.argv
 
12
    args[0] = __file__
 
13
    sys.exit(main(args))