/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome

« back to all changes in this revision

Viewing changes to src/stdhome.in

  • Committer: Tim Marston
  • Date: 2016-02-23 19:35:21 UTC
  • Revision ID: tim@ed.am-20160223193521-2vgtxbfos50rrpku
renamed version -> VERSION

Show diffs side-by-side

added added

removed removed

1
 
#!/usr/bin/python3
 
1
#!/usr/bin/python
2
2
#
3
3
# stdhome
4
4
#
28
28
        import sys
29
29
        from os.path import join, abspath, exists
30
30
 
31
 
        # add regular site-package directories (for debian)
32
 
        for path in sys.path:
33
 
                if path.endswith('dist-packages'):
34
 
                        sys.path.append( path[:-13] + 'site-packages' )
35
 
 
36
31
        # check for a development source directory and use that if it's there
37
32
        PACKAGE_DIR = join( abspath( sys.path[ 0 ] ), "..", "lib" )
38
33
        if exists( join( PACKAGE_DIR, "stdhome", "the.py" ) ):
39
 
                print("!!! using development packages !!!", file=sys.stderr)
 
34
                print >> sys.stderr, "!!! using development packages !!!"
40
35
                sys.path.insert( 0, PACKAGE_DIR )
41
36
        else:
42
37
                del PACKAGE_DIR
43
 
        
 
38
 
44
39
        # start main program
45
40
        from stdhome import the
46
41
        from stdhome.program import Program