diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2019-09-10 12:06:20 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2019-09-10 12:06:20 +0200 |
commit | 04c28f10c56b36e0754b375e3e1209d472bb9584 (patch) | |
tree | 874956a26dca011b331f1c2fcc78061ac0913fe6 /scripts | |
parent | f44e855f0462b105f54a0dea826e6fdcd60925db (diff) |
New command: Show
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/lesana | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lesana b/scripts/lesana index 713f8a7..b8b9929 100755 --- a/scripts/lesana +++ b/scripts/lesana @@ -2,7 +2,7 @@ import argparse -from lesana.command import New, Edit, Index, Search, Init, Remove +from lesana.command import New, Edit, Show, Index, Search, Init, Remove class Lesana(): """ @@ -12,6 +12,7 @@ class Lesana(): commands = ( ('new', New()), ('edit', Edit()), + ('show', Show()), ('index', Index()), ('search', Search()), ('init', Init()), |