Skip to content

Commit 3b63fd5

Browse files
committed
chore: convert to python3
1 parent edae05d commit 3b63fd5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

add-ns.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
import yaml
44
import sys
@@ -17,5 +17,5 @@
1717
for subject in manifest['subjects']:
1818
subject['namespace'] = sys.argv[1]
1919

20-
print '---'
21-
print yaml.dump(manifest)
20+
print('---')
21+
print(yaml.dump(manifest))

0 commit comments

Comments
 (0)