Skip to content

Commit

Permalink
Cope with spaces in column headers
Browse files Browse the repository at this point in the history
  • Loading branch information
itowlson committed Jun 14, 2019
1 parent bfeb23b commit a364e83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ts/src/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Dictionary } from "./dictionary";
import { KubectlOutput } from ".";
import { Errorable, failed } from "./errorable";

const KUBECTL_OUTPUT_COLUMN_SEPARATOR = /\s+/g;
const KUBECTL_OUTPUT_COLUMN_SEPARATOR = /\s\s+/g;

/**
* Provides a line-oriented view of tabular kubectl output.
Expand Down

0 comments on commit a364e83

Please sign in to comment.