mirror of
https://github.com/beetbox/beets.git
synced 2026-02-12 10:22:13 +01:00
remove leading 0 when octal is unwanted
This commit is contained in:
parent
6d0727f143
commit
cede0ed466
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ class TypesPluginTest(unittest.TestCase, TestHelper):
|
|||
|
||||
self.modify(u'mydate=1999-01-01', u'artist:prince')
|
||||
old.load()
|
||||
self.assertEqual(old['mydate'], mktime(1999, 01, 01))
|
||||
self.assertEqual(old['mydate'], mktime(1999, 1, 1))
|
||||
|
||||
self.modify(u'mydate=1999-12-30', u'artist:britney')
|
||||
new.load()
|
||||
|
|
|
|||
Loading…
Reference in a new issue