/stdhome

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

« back to all changes in this revision

Viewing changes to lib/stdhome/the.py

  • Committer: Tim Marston
  • Date: 2021-07-05 19:14:32 UTC
  • Revision ID: tim@ed.am-20210705191432-243ayb7s2nmussvi
python3ification

Show diffs side-by-side

added added

removed removed

20
20
 
21
21
 
22
22
import os
23
 
import util
 
23
from . import util
24
24
 
25
25
 
26
26
# the program
64
64
 
65
65
        global home_dir, full_home_dir
66
66
        full_home_dir = util.canonicalise_path( home_dir )
67
 
        if verbose >= 2: print "home-dir at " + home_dir
 
67
        if verbose >= 2: print("home-dir at " + home_dir)
68
68
 
69
69
        global repo
70
70
        if repo is not None:
71
 
                from repo import Repo
 
71
                from .repo import Repo
72
72
                repo = Repo( repo )
73
 
                if verbose >= 2: print "repo at " + repo.dir
 
73
                if verbose >= 2: print("repo at " + repo.dir)
74
74
                repo.detect_vcs()