~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to lib/common/makeuser.py

  • Committer: dcoles
  • Date: 2008-08-07 04:03:46 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:985
Makeuser: Fixed up small typo in make_svn_repo. Now prints the path on error 
(since we don't know login here)

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
    try:
66
66
        res = os.system("svnadmin create '%s'" % path)
67
67
        if res != 0 and throw_on_error:
68
 
            raise Exception("Cannot create repository for %s" % login)
 
68
            raise Exception("Cannot create repository: %s" % path)
69
69
    except Exception, exc:
70
70
        print repr(exc)
71
71
        if throw_on_error: