Skip to content

Commit b92f685

Browse files
authored
Merge pull request #178 from rglonek/master
Fix sqlite error field not found
2 parents 7b46240 + 90a21d3 commit b92f685

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tcconfig/_const.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ class Param:
4242
DIRECTION = "direction"
4343
FILTER_ID = "filter_id"
4444
CLASS_ID = "classid"
45-
DST_NETWORK = "dst-network"
46-
DST_PORT = "dst-port"
45+
DST_NETWORK = "dst_network"
46+
DST_PORT = "dst_port"
4747
FLOW_ID = "flowid"
4848
HANDLE = "handle"
4949
PARENT = "parent"
5050
PRIORITY = "priority"
5151
PROTOCOL = "protocol"
52-
SRC_NETWORK = "src-network"
53-
SRC_PORT = "src-port"
52+
SRC_NETWORK = "src_network"
53+
SRC_PORT = "src_port"
5454

5555
class ValueRange:
5656
class LatencyTime:

0 commit comments

Comments
 (0)