Performing more renames and marking of protected
[quicknote] / src / quicknote.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """
5 Copyright (C) 2007 Christoph Würstle
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License version 2 as
8 published by the Free Software Foundation.
9 """
10
11
12 import sys
13 sys.path.append('/usr/lib/quicknote')
14
15 import locale
16 import gettext
17 gettext.install('quicknote', unicode = 1)
18
19 import libquicknote
20
21
22 if __name__ == "__main__":
23         app = libquicknote.QuicknoteProgram()
24         app.main()