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

« back to all changes in this revision

Viewing changes to bin/ivle-cloneworksheets

  • Committer: William Grant
  • Date: 2009-04-28 05:06:00 UTC
  • Revision ID: grantw@unimelb.edu.au-20090428050600-hogd9d6wo7ksyqy8
ivle.database.get_store() now takes a configuration object.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import os
22
22
import sys
23
23
 
 
24
import ivle.config
24
25
from ivle.database import get_store, Subject, Semester, Offering, Worksheet
25
26
import ivle.worksheet.utils
26
27
 
34
35
                         % os.path.basename(sys.argv[0])
35
36
    sys.exit()
36
37
 
37
 
store = get_store()
 
38
store = get_store(ivle.config.Config())
38
39
 
39
40
src = store.find(Offering,
40
41
                 Subject.code == unicode(sys.argv[1]),