summaryrefslogtreecommitdiffstats
path: root/q
diff options
context:
space:
mode:
authorHarel Ben-Attia <harelba@gmail.com>2014-01-04 07:58:36 -0500
committerHarel Ben-Attia <harelba@gmail.com>2014-01-04 07:58:36 -0500
commit1073e204424d33841559d6b0ae4b4a76ab54925d (patch)
treec96e5cb74bdf4222e0caab3554936c6768e93d66 /q
parente1827757cf90ad720e4eaa88bbb0615604fcdb01 (diff)
Small hack-fix to account for the simplest use cases of filtering filename. Will be removed when column inference is fully implemented
Diffstat (limited to 'q')
-rwxr-xr-xq2
1 files changed, 1 insertions, 1 deletions
diff --git a/q b/q
index f506ced..9c7485b 100755
--- a/q
+++ b/q
@@ -285,7 +285,7 @@ class TableColumnInferer(object):
# FIXME: Hack to provide for some small variation in the column count. Will be fixed as soon as we have better column inferring
#self.column_count += max(6,int(self.column_count*0.2))
- self.column_count += 5
+ self.column_count += 7
if self.column_count == 0:
raise Exception("Detected a column count of zero... Failing")