diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2016-12-22 21:50:44 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2016-12-22 21:50:44 +0100 |
commit | 0038a648a74236e33144cb8c3bce42a0873ec44f (patch) | |
tree | 0061cacde856ea0761bd6883e7b31475a1db1a3d /scripts | |
parent | 5004001be342f46dd694d539a9a4b8bfbddfd69a (diff) |
new command: edit
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 c909888..a452c64 100755 --- a/scripts/lesana +++ b/scripts/lesana @@ -1,13 +1,14 @@ #!/usr/bin/env python3 import gadona -from lesana.command import New, Index, Search +from lesana.command import New, Edit, Index, Search if __name__ == '__main__': app = gadona.App() app.description = "Manage collections" app.commands = [ New(), + Edit(), Index(), Search(), ] |