[Git][NTPsec/ntpsec][master] 2 commits: Typo fix.

Eric S. Raymond gitlab at mg.gitlab.com
Tue Dec 6 04:03:09 UTC 2016


Eric S. Raymond pushed to branch master at NTPsec / ntpsec


Commits:
9195616d by Eric S. Raymond at 2016-12-05T06:34:54-05:00
Typo fix.

- - - - -
bcd4e4e1 by Eric S. Raymond at 2016-12-05T23:02:45-05:00
Addres GitLab issue #184: waf clean should remove all pyc files...

... not just those in build/

- - - - -


2 changed files:

- pylib/packet.py
- wscript


Changes:

=====================================
pylib/packet.py
=====================================
--- a/pylib/packet.py
+++ b/pylib/packet.py
@@ -373,7 +373,7 @@ class SyncPacket(Packet):
         self.origin_timestamp = 0
         self.receive_timestamp = 0
         self.transmit_timestamp = 0
-        self.data = polybyes(data)
+        self.data = polybytes(data)
         self.extension = ''
         self.extfields = []
         self.mac = ''


=====================================
wscript
=====================================
--- a/wscript
+++ b/wscript
@@ -115,7 +115,7 @@ def afterparty(ctx):
     # Also, they need to be able to see the Python extension
     # module built in libntp.
     if ctx.cmd == 'clean':
-        ctx.exec_command("rm -f wafhelpers/*.pyc pylib/__pycache__/*.pyc")
+        ctx.exec_command("rm -f wafhelpers/*.pyc pylib/__pycache__/*.pyc wafhelpers/__pycache__/*.pyc")
     for x in ("ntpq", "ntpdig", "ntpstats", "ntpsweep", "ntptrace", "ntpwait"):
             path_build = ctx.bldnode.make_node("pylib")
             path_source = ctx.srcnode.make_node(x + "/ntp")



View it on GitLab: https://gitlab.com/NTPsec/ntpsec/compare/5ef246401d012c9dfc0fb2fa81367a19083577c7...bcd4e4e1dc615f2c7d465b62cc2ec606ed0a7750
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ntpsec.org/pipermail/vc/attachments/20161206/f7548ef9/attachment.html>


More information about the vc mailing list