~timo-jyrinki/ubuntu/trusty/pitivi/backport_utopic_fixes

« back to all changes in this revision

Viewing changes to tests/test_undo.py

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2014-04-05 15:28:16 UTC
  • mfrom: (6.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20140405152816-6lijoax4cngiz5j5
Tags: 0.93-3
* debian/control:
  + Depend on python-gi (>= 3.10), older versions do not work
    with pitivi (Closes: #732813).
  + Add missing dependency on gir1.2-clutter-gst-2.0 (Closes: #743692).
  + Add suggests on gir1.2-notify-0.7 and gir1.2-gnomedesktop-3.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# PiTiVi , Non-linear video editor
 
1
# Pitivi video editor
2
2
#
3
3
#       tests/test_undo.py
4
4
#
21
21
 
22
22
from unittest import TestCase
23
23
 
24
 
from pitivi.undo import UndoError, UndoWrongStateError, UndoableAction, \
25
 
        UndoableActionStack, UndoableActionLog
 
24
from pitivi.undo.undo import UndoError, UndoWrongStateError, UndoableAction, \
 
25
    UndoableActionStack, UndoableActionLog
26
26
 
27
27
 
28
28
class DummyUndoableAction(UndoableAction):