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

« back to all changes in this revision

Viewing changes to bin/ivle-fetchsubmissions

  • Committer: David Coles
  • Date: 2010-07-20 00:30:45 UTC
  • Revision ID: coles.david@gmail.com-20100720003045-j239u3w3m5wfribb
Put "__name__" = "__main__" into globals for console.

Fixes issue where __name__ did not work when run in the python console. exec() 
with an empty globals dictionary will result in "__name__" = "__builtin__".

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