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

« back to all changes in this revision

Viewing changes to bin/ivle-fetchsubmissions

  • Committer: Matt Giuca
  • Date: 2010-07-23 06:27:02 UTC
  • mfrom: (1818.1.1 project-extensions)
  • Revision ID: matt.giuca@gmail.com-20100723062702-cknq5zzk1cwf8q2q
Merge from branch project-extensions (changes project_extension.deadline into project_extension.days in the database).
The branch isn't finished; I just want this DB change to be included before we release 1.0.2, in case the rest of the changes for this branch don't make it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
        # The name of the repository directory within 'groups' is
119
119
        # SUBJECT_YEAR_SEMESTER_GROUP
120
120
        namespace = "_".join([offering.subject.short_name,
121
 
            offering.semester.year, offering.semester.url_name, groupname])
 
121
            offering.semester.year, offering.semester.semester, groupname])
122
122
        repo_path = os.path.join(config['paths']['svn']['repo_path'],
123
123
                                'groups', namespace)
124
124
    else:
312
312
 
313
313
    # Target directory is DEST/subject/year/semester/project
314
314
    target_dir = os.path.join(options.dest, subject_name,
315
 
        offering.semester.year, offering.semester.url_name, project_name)
 
315
        offering.semester.year, offering.semester.semester, project_name)
316
316
    if not os.path.exists(target_dir):
317
317
        os.makedirs(target_dir)
318
318