Ignore:
Timestamp:
Jan 21, 2012, 5:11:09 PM (12 years ago)
Author:
Daniel Cooper <danny@…>
Branches:
no-cups
Children:
279640c
Parents:
4914b47 (diff), 374c558 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Daniel Cooper <danny@…> (01/21/12 17:11:09)
git-committer:
Daniel Cooper <danny@…> (01/21/12 17:11:09)
Message:

Merge branch 'no-cups' of github.com:jhamrick/gutenbach into no-cups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/lib/gutenbach/server/job.py

    rc1cebbc r9225351  
    322322        self.player.mplayer_pause()
    323323
     324    def resume(self):
     325        """Non-blocking resume.  Job must be paused (see
     326        'GutenbachJob.is_paused').
     327
     328        Raises
     329        ------
     330        InvalidJobStateException
     331            If the job is not paused.
     332
     333        """
     334        if not self.is_paused:
     335            raise errors.InvalidJobStateException(self.state)
     336        self.player.mplayer_pause()
     337
    324338    def cancel(self):
    325339        """Blocking cancel. The job must not have been previously
Note: See TracChangeset for help on using the changeset viewer.