diff options
author | 2015-05-12 02:00:28 +0200 | |
---|---|---|
committer | 2015-05-12 03:22:29 +0200 | |
commit | 0349b81a10d2937897f30031c4dedb49aa132d8c (patch) | |
tree | 3db2827cd64888cc013e064d4e201b8a6ddbc7a9 /setup.py | |
parent | Merge pull request #12 from GammaC0de/GammaC0de-fix-api (diff) | |
download | pyload-0349b81a10d2937897f30031c4dedb49aa132d8c.tar.xz |
'from os' -> 'import os' and so on...
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,11 +1,11 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +import os import sys import pyload -from os import path from setuptools import setup |