Allow short form for mwmtool id

This commit is contained in:
Ilya Zverev 2018-06-20 17:09:49 +03:00
parent 0dbf9c6442
commit 9967d94a80
2 changed files with 2 additions and 1 deletions

View file

@ -4,6 +4,7 @@
* Better support for Python 2.7.
* Encoding and decoding int64 negative ids.
* Allow short form for id: `mwmtool id way/123456`.
## 0.10.0

View file

@ -116,7 +116,7 @@ def decode_id(args):
print('https://www.openstreetmap.org/{}/{}'.format(
type_abbr[osm_id[0]], osm_id[1]))
else:
m = re.search(r'/(node|way|relation)/(\d+)', args.id)
m = re.search(r'(node|way|relation)/(\d+)', args.id)
if m:
print(OsmIdCode.pack(m.group(1), int(m.group(2)), args.int64))
else: