forked from Github/date2name
migrated to Python 3 via 2to3
This commit is contained in:
parent
ac0ffda11d
commit
fc258999e1
1 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
# Time-stamp: <2015-02-01 12:22:01 vk>
|
||||
# Time-stamp: <2017-08-22 13:04:04 vk>
|
||||
|
||||
"""
|
||||
date2name
|
||||
|
|
@ -274,7 +274,7 @@ def main():
|
|||
"""Main function [make pylint happy :)]"""
|
||||
|
||||
if options.version:
|
||||
print os.path.basename(sys.argv[0]) + " " + PROG_VERSION
|
||||
print(os.path.basename(sys.argv[0]) + " " + PROG_VERSION)
|
||||
sys.exit(0)
|
||||
|
||||
if len(args) < 1:
|
||||
|
|
|
|||
Loading…
Reference in a new issue