123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- """
- @package gis_set_error
- GRASS start-up screen error message.
- (C) 2010-2011 by the GRASS Development Team
- This program is free software under the GNU General Public License
- (>=v2). Read the file COPYING that comes with GRASS for details.
- @author Martin Landa <landa.martin gmail.com>
- """
- import os
- import sys
- # i18n is taken care of in the grass library code.
- # So we need to import it before any of the GUI code.
- # NOTE: in this particular case, we don't really need the grass library;
- # NOTE: we import it just for the side effects of gettext.install()
- import grass
- from core import globalvar
- import wx
- def main():
- app = wx.App()
- if len(sys.argv) == 1:
- msg = "Unknown reason"
- else:
- msg = ''
- for m in sys.argv[1:]:
- msg += m
- wx.MessageBox(caption="Error",
- message=msg,
- style=wx.OK | wx.ICON_ERROR)
- app.MainLoop()
- if __name__ == "__main__":
- main()
|