diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-02-04 17:27:21 +0100 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-02-17 19:55:17 +0100 |
commit | 412df3a17ec35277f5a1d2f21c6f9a287f9ef8ad (patch) | |
tree | 384b6c789e8fd3bceb057a629ad15022f0de689c /grc/gui/FlowGraph.py | |
parent | ed6e9a484ddddbbadf19584f6606d2c9e36de823 (diff) |
grc-refactor: rename grc/model/ to grc/core/
Diffstat (limited to 'grc/gui/FlowGraph.py')
-rw-r--r-- | grc/gui/FlowGraph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/FlowGraph.py b/grc/gui/FlowGraph.py index 0c66a7e5ad..28fc48fc13 100644 --- a/grc/gui/FlowGraph.py +++ b/grc/gui/FlowGraph.py @@ -30,7 +30,7 @@ from . Element import Element from . Constants import SCROLL_PROXIMITY_SENSITIVITY, SCROLL_DISTANCE from . external_editor import ExternalEditor -from ..model.FlowGraph import FlowGraph as _Flowgraph +from ..core.FlowGraph import FlowGraph as _Flowgraph class FlowGraph(Element, _Flowgraph): |