Skip to content

Commit

Permalink
Merge pull request #23 from nrminor/dev
Browse files Browse the repository at this point in the history
Very small regex pattern tweak to allow Still to process column names that contain spaces
  • Loading branch information
danielecook committed Jan 8, 2024
2 parents 67aabc3 + 42d477c commit 7c5e9df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/schema/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func parseColumn(line string) Col {
latitude: in_range(-90, 90) # The latitude
*/
reColumn, err := regexp.Compile("^([^: ]+):([^$#]+)?(#.*$)?")
reColumn, err := regexp.Compile("^([^:]+):([^$#]+)?(#.*$)?")
if err != nil {
log.Fatal(err)
}
Expand Down

0 comments on commit 7c5e9df

Please sign in to comment.