~umang/indicator-stickynotes/trunk

« back to all changes in this revision

Viewing changes to stickynotes/backend.py

  • Committer: Umang Varma
  • Date: 2012-07-14 01:49:30 UTC
  • Revision ID: git-v1:1da4153dc5272b318c16c7c129e2ac4e5a29cb78
Start using python's locale for l10n

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
import uuid
20
20
import json
21
21
from os.path import expanduser
22
 
 
23
 
SETTINGS_FILE = "~/.stickynotes"
 
22
from stickynotes.info import SETTINGS_FILE
24
23
 
25
24
class Note:
26
25
    def __init__(self, content=None, gui_class=None, noteset=None):