Skip to content

Commit b2d6b23

Browse files
authored
Add missing % in formatting statement
1 parent eeb75d9 commit b2d6b23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/confbuilder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
print("*** warning: no network for %s (%s) - ignoring" % (ip, name), file=sys.stderr)
127127
print("# no network for %s (%s) - ignoring" % (ip, name))
128128
else:
129-
print("6%s.%s:%s"); (name, ip6map[net], ip.strHex()[2:])
129+
print("6%s.%s:%s" % (name, ip6map[net], ip.strHex()[2:]))
130130
for z in aliases:
131131
print("3%s:%s" % (name, ip.strHex()[2:]))
132132
print("'%s:Host contact is %s" % (name, admin))

0 commit comments

Comments
 (0)