mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-02 19:58:03 +00:00
Fixed extra % sign in formatting
This commit is contained in:
@@ -353,7 +353,7 @@ class StationProfile:
|
|||||||
v = int(self.prefix, 10)
|
v = int(self.prefix, 10)
|
||||||
if v > 0:
|
if v > 0:
|
||||||
num += v
|
num += v
|
||||||
template = "sta%0%sd" % wd
|
template = "sta0%sd" % wd
|
||||||
name = template % num
|
name = template % num
|
||||||
#if self.debug:
|
#if self.debug:
|
||||||
# print("XXXXXXXXXXX %s XXXXXXXXXXXXXXX" % name)
|
# print("XXXXXXXXXXX %s XXXXXXXXXXXXXXX" % name)
|
||||||
|
|||||||
Reference in New Issue
Block a user