Commit 2e30cb78 authored by Jason Swails's avatar Jason Swails

Fixes and tweaks to xparmed

parent 10a8f50f
...@@ -211,7 +211,7 @@ def guiapp(): ...@@ -211,7 +211,7 @@ def guiapp():
from optparse import OptionParser from optparse import OptionParser
from os.path import exists, split from os.path import exists, split
from parmed.tools.exceptions import ParmError from parmed.tools.exceptions import ParmError
from parmed.tools import __version__ from parmed import __version__
from parmed.tools.gui.guitools import ParmedApp from parmed.tools.gui.guitools import ParmedApp
from parmed.tools.gui.guifiletools import file_chooser from parmed.tools.gui.guifiletools import file_chooser
from parmed.tools.logos import Logo from parmed.tools.logos import Logo
......
""" Exceptions used in parmed.py """ """ Exceptions used in parmed script """
from sys import stderr from sys import stderr
from parmed.exceptions import ParmedError, ParmedWarning, InputError from parmed.exceptions import ParmedError, ParmedWarning, InputError
......
...@@ -18,7 +18,7 @@ def gui_action_dispatcher(root, amber_prmtop, action_name, messages): ...@@ -18,7 +18,7 @@ def gui_action_dispatcher(root, amber_prmtop, action_name, messages):
if not hasattr(_guiactions, action_name.lower()): if not hasattr(_guiactions, action_name.lower()):
showerror('Not Implemented.', action_name + showerror('Not Implemented.', action_name +
' is not implemented in xParmEd! Use parmed.py instead.') ' is not implemented in xParmEd! Use parmed instead.')
return None return None
# Call the function to establish our action # Call the function to establish our action
......
""" """
The GUI components of xparmed.py The GUI components of xparmed
""" """
from __future__ import division from __future__ import division
from parmed.utils.six import iteritems from parmed.utils.six import iteritems
......
#!/usr/bin/env python #!/usr/bin/env python
from parmed.scripts import clapp from parmed.scripts import guiapp
guiapp() guiapp()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment