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

« back to all changes in this revision

Viewing changes to bin/ivle-fetchsubmissions

Removed --cutoff (too hard to implement; no demand).

Show diffs side-by-side

added added

removed removed

Lines of Context:
149
149
        help="Semester of the subject's offering (eg. 2009/1). "
150
150
             "Defaults to the currently active semester.",
151
151
        default=None)
152
 
    # XXX -c has no effect
153
 
    parser.add_option("-c", "--cutoff",
154
 
        action="store", dest="cutoff", metavar="DATE",
155
 
        help="Cutoff date (retrieve the submissions as of this date)."
156
 
             "YYYY-MM-DD H:M:S.",
157
 
        default=None)
158
152
    parser.add_option("-d", "--dest",
159
153
        action="store", dest="dest", metavar="PATH",
160
154
        help="Destination directory (default to '.', creates a subdirectory, "
183
177
        except ValueError:
184
178
            parser.error('Invalid semester (must have form "year/semester")')
185
179
 
186
 
    if options.cutoff is not None:
187
 
        try:
188
 
            cutoff = datetime.datetime.strptime(options.cutoff,
189
 
                                                "%Y-%m-%d %H:%M:%S")
190
 
        except ValueError:
191
 
            parser.error("Invalid date format: '%s' "
192
 
                         "(must be YYYY-MM-DD H:M:S)." % options.cutoff)
193
 
    else:
194
 
        cutoff = None
195
 
 
196
180
    svnclient = pysvn.Client()
197
181
    config = ivle.config.Config(plugins=False)
198
182
    store = ivle.database.get_store(config)