~umang/indicator-stickynotes/trunk

« back to all changes in this revision

Viewing changes to sticky.py

  • Committer: Umang Varma
  • Date: 2012-06-23 15:22:32 UTC
  • Revision ID: git-v1:8a2acc262a26ec4423079701a1be9e3c429f6ba0
Move backend and gui to sticknotes package

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# You should have received a copy of the GNU General Public License along with
18
18
# indicator-stickynotes.  If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
 
from backend import Note, NoteSet
21
 
from gui import StickyNote
 
20
from stickynotes.backend import Note, NoteSet
 
21
from stickynotes.gui import StickyNote
22
22
from gi.repository import Gtk, Gdk
23
23
from gi.repository import AppIndicator3 as appindicator
24
24