Skip to content

Commit

Permalink
fixed key value error
Browse files Browse the repository at this point in the history
Signed-off-by: Peng Xiao <xiaoquwl@gmail.com>
  • Loading branch information
xiaopeng163 committed Jan 25, 2016
1 parent 6bd08bd commit f16e62b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yabgp/common/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@
18: 'AS4_AGGREGATOR'
}

ATTRIBUTE_STR_2_ID = dict([(k, v) for (k, v) in ATTRIBUTE_ID_2_STR.items()])
ATTRIBUTE_STR_2_ID = dict([(v, k) for (k, v) in ATTRIBUTE_ID_2_STR.items()])


WELL_KNOW_COMMUNITY_INT_2_STR = {
Expand Down

0 comments on commit f16e62b

Please sign in to comment.