Skip to content

Commit

Permalink
Merge pull request #178 from rglonek/master
Browse files Browse the repository at this point in the history
Fix sqlite error field not found
  • Loading branch information
thombashi committed May 1, 2024
2 parents 7b46240 + 90a21d3 commit b92f685
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tcconfig/_const.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ class Param:
DIRECTION = "direction"
FILTER_ID = "filter_id"
CLASS_ID = "classid"
DST_NETWORK = "dst-network"
DST_PORT = "dst-port"
DST_NETWORK = "dst_network"
DST_PORT = "dst_port"
FLOW_ID = "flowid"
HANDLE = "handle"
PARENT = "parent"
PRIORITY = "priority"
PROTOCOL = "protocol"
SRC_NETWORK = "src-network"
SRC_PORT = "src-port"
SRC_NETWORK = "src_network"
SRC_PORT = "src_port"

class ValueRange:
class LatencyTime:
Expand Down

0 comments on commit b92f685

Please sign in to comment.