Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kyechou committed Nov 22, 2023
1 parent c54cad3 commit 56acc03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/15-real-networks/parse-network-dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def parse_rocketfuel_bb(in_dir, out_dir):
edges.add((tokens[0], tokens[1]))

out_fn = os.path.join(
out_dir, 'rocketfuel-bb.AS-{}.{}-nodes.{}-edges.txt'.format(
out_dir, 'rocketfuel-bb-AS-{}.{}-nodes.{}-edges.txt'.format(
asn, len(nodes), len(edges)))
with open(out_fn, 'w') as f:
for edge in edges:
Expand Down Expand Up @@ -107,7 +107,7 @@ def parse_rocketfuel_cch(in_dir, out_dir):
edges.add((uid, nuid))

out_fn = os.path.join(
out_dir, 'rocketfuel-cch.AS-{}.{}-nodes.{}-edges.txt'.format(
out_dir, 'rocketfuel-cch-AS-{}.{}-nodes.{}-edges.txt'.format(
asn, len(nodes), len(edges)))
with open(out_fn, 'w') as f:
for edge in edges:
Expand Down

0 comments on commit 56acc03

Please sign in to comment.