diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-07-03 23:50:00 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-07-03 23:50:00 +0200 |
commit | 372c5781ae6723f65bb9e6cea2d719f916d8b265 (patch) | |
tree | b129fd77bda052192d86ee4d094654ca85db9a4b | |
parent | b92627b162d3db44e683e92ad78cb713f7557f8d (diff) | |
download | portato-372c5781ae6723f65bb9e6cea2d719f916d8b265.tar.gz portato-372c5781ae6723f65bb9e6cea2d719f916d8b265.tar.bz2 portato-372c5781ae6723f65bb9e6cea2d719f916d8b265.zip |
Removed XSD_LOCATION -- as there is no more xsd ;)
Diffstat (limited to '')
-rwxr-xr-x | portato.py | 2 | ||||
-rw-r--r-- | portato/constants.py | 4 |
2 files changed, 1 insertions, 5 deletions
@@ -19,7 +19,7 @@ import gettext, locale from optparse import OptionParser, SUPPRESS_HELP from portato import get_listener -from portato.constants import VERSION, XSD_LOCATION, LOCALE_DIR, APP, SU_COMMAND +from portato.constants import VERSION, LOCALE_DIR, APP, SU_COMMAND def main (): # set gettext stuff diff --git a/portato/constants.py b/portato/constants.py index 32f0f9b..93e4240 100644 --- a/portato/constants.py +++ b/portato/constants.py @@ -45,8 +45,6 @@ These should be set during the installation. @type SETTINGS_DIR: string @var TEMPLATE_DIR: Directory containing the UI template files. @type TEMPLATE_DIR: string -@var XSD_LOCATION: Path of the plugin schema. -@type XSD_LOCATION: string """ import os from os.path import join as pjoin @@ -73,5 +71,3 @@ LOCALE_DIR = "i18n/" PLUGIN_DIR = pjoin(DATA_DIR, "plugins/") SETTINGS_DIR = pjoin(HOME, "."+APP) TEMPLATE_DIR = "portato/gui/templates/" - -XSD_LOCATION = pjoin(DATA_DIR, "plugin.xsd") |