Staging
v0.8.1
Revision a9d16c85d79890f2d02ccc84da3960c2fdc08efb authored by Terry Jan Reedy on 28 July 2013, 20:25:16 UTC, committed by Terry Jan Reedy on 28 July 2013, 20:25:16 UTC
1 parent 5517596
Raw File
pyvenv
#!/usr/bin/env python3
if __name__ == '__main__':
    import sys
    rc = 1
    try:
        import venv
        venv.main()
        rc = 0
    except Exception as e:
        print('Error: %s' % e, file=sys.stderr)
    sys.exit(rc)
back to top