/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: 2021-09-01 12:55:15 UTC
  • Revision ID: tim@ed.am-20210901125515-i6b5rxcrceofwm1e
updates for bzr->bzr filename change

Show diffs side-by-side

added added

removed removed

1
 
#!/usr/bin/python
 
1
#!@PYTHON@
2
2
#
3
3
# stdhome
4
4
#
26
26
if __name__ == "__main__":
27
27
 
28
28
        import sys
29
 
        from os.path import join, abspath, exists
 
29
        from os.path import abspath, exists, join
 
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' )
30
35
 
31
36
        # check for a development source directory and use that if it's there
32
37
        PACKAGE_DIR = join( abspath( sys.path[ 0 ] ), "..", "lib" )
33
38
        if exists( join( PACKAGE_DIR, "stdhome", "the.py" ) ):
34
 
                print >> sys.stderr, "!!! using development packages !!!"
 
39
                print( "!!! using development packages !!!", file=sys.stderr )
35
40
                sys.path.insert( 0, PACKAGE_DIR )
36
41
        else:
37
42
                del PACKAGE_DIR