diff options
Diffstat (limited to 'internal/askcli/command_delete.go')
| -rw-r--r-- | internal/askcli/command_delete.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/askcli/command_delete.go b/internal/askcli/command_delete.go index 84764dd..45f0f3d 100644 --- a/internal/askcli/command_delete.go +++ b/internal/askcli/command_delete.go @@ -11,7 +11,7 @@ func (d Dispatcher) handleDelete(ctx context.Context, args []string, stdin io.Re io.WriteString(stderr, "error: ask delete requires a UUID argument\n") return 1, nil } - uuid := args[1] + uuid := NormalizeUUID(args[1]) if IsNumericID(uuid) { io.WriteString(stderr, RejectNumericID()) return 1, nil |
