diff --git a/acd/l5x/elements.py b/acd/l5x/elements.py index b4321e1..5753274 100644 --- a/acd/l5x/elements.py +++ b/acd/l5x/elements.py @@ -117,9 +117,9 @@ def build(self) -> MapDevice: r = RxMapDevice.from_bytes(results[0][3]) if r.record_format_version == 0x00: - return MapDevice(results[0][0], 0, 0, 0, 0, 0, []) + return MapDevice(results[0][0], 0, 0, 0, 0, 0, 0, []) elif not r.body.valid: - return MapDevice("", 0, 0, 0, 0, 0, []) + return MapDevice("", 0, 0, 0, 0, 0, 0, []) self._cur.execute( "SELECT tag_reference, record_string FROM comments WHERE parent=" + str( diff --git a/setup.py b/setup.py index 8798fa0..f5f0fc9 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ def run(self): setup( name="acd-tools", - version="0.2a1", + version="0.2a2", description="Rockwell ACD File Tools", classifiers=[ "Development Status :: 3 - Alpha",