Allow short form for mwmtool id
This commit is contained in:
parent
0dbf9c6442
commit
9967d94a80
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue