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

« back to all changes in this revision

Viewing changes to bin/ivle-showenrolment

  • Committer: Matt Giuca
  • Date: 2009-04-22 04:56:58 UTC
  • Revision ID: matt.giuca@gmail.com-20090422045658-nnfepg0902n3mwtq
ivle.makeuser: Fixed odd code which would create the home directory, then
    immediately clobber it by restoring the backup.
    This broke in Python 2.6 because the behaviour of shutil.move changed.
    (Commented).

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
if user.enrolments.count() > 0:
42
42
    print 'IVLE enrolment for %s (%s):' % (user.login, user.fullname)
43
 
    print '    Code       Name Semester Year'
44
 
    print '-------- ---------- -------- ----'
 
43
    print '    Code       Name Year Semester     Role'
 
44
    print '-------- ---------- ---- -------- --------'
45
45
    for e in user.enrolments:
46
 
        print '%8s %10s %8s %4s' % (
 
46
        print '%8s %10s %4s %8s %8s' % (
47
47
                e.offering.subject.code, e.offering.subject.short_name,
48
 
                e.offering.semester.semester, e.offering.semester.year
 
48
                e.offering.semester.year, e.offering.semester.semester,
 
49
                e.role
49
50
                )
50
51
else:
51
52
    print '%s (%s) is not enrolled in any IVLE offerings' % (