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

« back to all changes in this revision

Viewing changes to ivle/fileservice_lib/action.py

  • Committer: David Coles
  • Date: 2010-07-20 07:05:34 UTC
  • Revision ID: coles.david@gmail.com-20100720070534-lf6de6rdszt1rchn
Fix svnremove typo in r1804

Show diffs side-by-side

added added

removed removed

Lines of Context:
317
317
    """
318
318
    frompath = fields.getfirst('from')
319
319
    topath = fields.getfirst('to')
320
 
    movefile(req, frompath, topath)
 
320
    svn = fields.getfirst('svn')
 
321
    if svn:
 
322
        svn_movefile(req, frompath, topath)
 
323
    else:
 
324
        movefile(req, frompath, topath)
321
325
 
322
326
def action_mkdir(req, fields):
323
327
    """Creates a directory with the given path.