summaryrefslogtreecommitdiff
path: root/plac/doc/ishelve2.py
diff options
context:
space:
mode:
Diffstat (limited to 'plac/doc/ishelve2.py')
-rw-r--r--plac/doc/ishelve2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plac/doc/ishelve2.py b/plac/doc/ishelve2.py
index b055b98..dbc5d68 100644
--- a/plac/doc/ishelve2.py
+++ b/plac/doc/ishelve2.py
@@ -9,7 +9,7 @@ class ShelveInterface(object):
def __init__(self, configfile):
self.configfile = configfile or '~/conf.shelve'
self.fname = os.path.expanduser(self.configfile)
- self.__doc__ += '\nOperating on %s.\n.help to see '\
+ self.__doc__ += '\nOperating on %s.\nUse help to see '\
'the available commands.\n' % self.fname
def __enter__(self):
self.sh = shelve.open(self.fname)
@@ -40,4 +40,4 @@ class ShelveInterface(object):
main = ShelveInterface # useful for the tests
if __name__ == '__main__':
- plac.Interpreter.call(ShelveInterface) \ No newline at end of file
+ plac.Interpreter.call(ShelveInterface)