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

« back to all changes in this revision

Viewing changes to bin/ivle-fetchsubmissions

Added --zip option, to turn on zip files (no effect).

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
        help="Semester of the subject's offering (eg. 2009/1). "
111
111
             "Defaults to the currently active semester.",
112
112
        default=None)
 
113
    # XXX -c has no effect
113
114
    parser.add_option("-c", "--cutoff",
114
115
        action="store", dest="cutoff", metavar="DATE",
115
116
        help="Cutoff date (retrieve the submissions as of this date)."
120
121
        help="Destination directory (default to '.', creates a subdirectory, "
121
122
            "so will not pollute PATH).",
122
123
        default=".")
 
124
    # XXX -z has no effect
 
125
    parser.add_option("-z", "--zip",
 
126
        action="store_true", dest="zip",
 
127
        help="Store each submission in a Zip file.",
 
128
        default=False)
123
129
    (options, args) = parser.parse_args(argv[1:])
124
130
 
125
131
    if len(args) < 2: