diff options
author | Joel Rosdahl <joel@rosdahl.net> | 2016-03-08 22:46:28 +0100 |
---|---|---|
committer | Joel Rosdahl <joel@rosdahl.net> | 2016-03-08 22:46:28 +0100 |
commit | f2340d1c4001654baa9cbc92e7478126ad8397e6 (patch) | |
tree | 54adc29150585f8f7cbeb40f32afde85372e8f39 | |
parent | db5680d01428816ba670f4828144436b69de4a75 (diff) | |
download | miniircd-f2340d1c4001654baa9cbc92e7478126ad8397e6.tar.gz miniircd-f2340d1c4001654baa9cbc92e7478126ad8397e6.zip |
Move constant after module-level imports
-rwxr-xr-x | miniircd | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,8 +20,6 @@ # # Joel Rosdahl <joel@rosdahl.net> -VERSION = "1.1" - import os import re import select @@ -33,6 +31,8 @@ import time from datetime import datetime from optparse import OptionParser +VERSION = "1.1" + def create_directory(path): if not os.path.isdir(path): |