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

« back to all changes in this revision

Viewing changes to bin/ivle-cloneworksheets

  • Committer: Matt Giuca
  • Date: 2010-02-18 03:57:33 UTC
  • Revision ID: matt.giuca@gmail.com-20100218035733-d4v0iy4hq0wbjas6
ivle.fileservice_lib.listing: Previously assumed any SVN client error meant the directory was not versioned, and silently dropped SVN metadata. Now checks the error message, and for any unexpected errors, raises the exception rather than assuming unversioned. Fixes Launchpad Bug #523592.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
if dst.worksheets.count() > 0:
55
55
    die('%r already has worksheets - doing nothing' % dst)
56
56
 
57
 
for oldws in src.worksheets:
58
 
    newws = Worksheet()
59
 
    newws.seq_no = oldws.seq_no
60
 
    newws.identifier = oldws.identifier
61
 
    newws.name = oldws.name
62
 
    newws.assessable = oldws.assessable
63
 
    newws.data = oldws.data
64
 
    newws.format = oldws.format
65
 
    newws.offering = dst
66
 
    store.add(newws)
67
 
    ivle.worksheet.utils.update_exerciselist(newws)
 
57
dst.clone_worksheets(src)
68
58
 
69
59
print >> sys.stderr, 'copied %d worksheets from %r to %r' \
70
60
                     % (dst.worksheets.count(), src, dst)