mirror of
https://github.com/edgewall/genshi.git
synced 2026-02-05 06:45:30 +01:00
9 lines
146 B
Bash
9 lines
146 B
Bash
#!/bin/sh
|
|
#
|
|
# Script to run 2to3 on files not covered by setup.py
|
|
#
|
|
export PYTHONIOENCODING=utf8
|
|
|
|
# General 2to3 run
|
|
2to3 -w --no-diffs examples/
|