~ubuntu-branches/ubuntu/trusty/python-apptools/trusty

« back to all changes in this revision

Viewing changes to examples/appscripting/example_script_window.py

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2011-07-08 23:55:50 UTC
  • mfrom: (2.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20110708235550-yz5u79ubeo4dhyfx
Tags: 4.0.0-1
* New upstream release
* Update debian/watch file

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
 
16
16
# Enthought library imports.
17
 
from enthought.pyface.action.api import Action, Group, MenuManager
18
 
from enthought.pyface.workbench.api import WorkbenchWindow
19
 
from enthought.pyface.workbench.action.api import MenuBarManager, \
 
17
from pyface.action.api import Action, Group, MenuManager
 
18
from pyface.workbench.api import WorkbenchWindow
 
19
from pyface.workbench.action.api import MenuBarManager, \
20
20
        ToolBarManager
21
 
from enthought.traits.api import Instance, on_trait_change
22
 
from enthought.appscripting.api import get_script_manager
23
 
from enthought.appscripting.action.api import StartRecordingAction, \
 
21
from traits.api import Instance, on_trait_change
 
22
from apptools.appscripting.api import get_script_manager
 
23
from apptools.appscripting.action.api import StartRecordingAction, \
24
24
        StopRecordingAction
25
25
 
26
26
# Local imports.