From 1aed9129f13638747c4104605129bd5beb3a98ce Mon Sep 17 00:00:00 2001 From: Nestor Arocha Rodriguez Date: Wed, 8 Aug 2012 19:49:11 +0100 Subject: [PATCH] moved validate module --- bin/validate.py | 6 +++--- pydsl/{Interaction => }/Validate.py | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename pydsl/{Interaction => }/Validate.py (100%) diff --git a/bin/validate.py b/bin/validate.py index 512d9fc..633045b 100755 --- a/bin/validate.py +++ b/bin/validate.py @@ -20,8 +20,8 @@ validates input against the Grammar """ -__author__ = "Néstor Arocha Rodríguez" -__copyright__ = "Copyright 2008-2012, Néstor Arocha Rodríguez" +__author__ = "Nestor Arocha Rodriguez" +__copyright__ = "Copyright 2008-2012, Nestor Arocha Rodriguez" __email__ = "nesaro@gmail.com" import logging @@ -54,7 +54,7 @@ def __init__(self, optionsdict): def execute(self): resulttrees = None - from pydsl.Interaction.Validate import validate + from pydsl.Validate import validate if self._opt["expression"]: resulttrees = validate(self.__sgrammar, self._opt["expression"]) elif self._opt["inputfile"]: diff --git a/pydsl/Interaction/Validate.py b/pydsl/Validate.py similarity index 100% rename from pydsl/Interaction/Validate.py rename to pydsl/Validate.py