diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-02-27 13:05:37 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-02-27 13:05:37 -0500 |
commit | 45203070ed10d344f024bbbe58612e2232c50965 (patch) | |
tree | 25690df549fe4c48835980489893160d27eb27d8 /klippy/util.py | |
parent | e7eb745d9924523ab34913761d7a6580fd2a0a15 (diff) | |
download | kutter-45203070ed10d344f024bbbe58612e2232c50965.tar.gz kutter-45203070ed10d344f024bbbe58612e2232c50965.tar.xz kutter-45203070ed10d344f024bbbe58612e2232c50965.zip |
util: Wrap code to 80 columns
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/util.py')
-rw-r--r-- | klippy/util.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/klippy/util.py b/klippy/util.py index 093dd001..a5547830 100644 --- a/klippy/util.py +++ b/klippy/util.py @@ -66,9 +66,11 @@ def get_git_version(from_file=True): # Obtain version info from "git" program gitdir = os.path.join(klippy_src, '..') - prog = ('git', '-C', gitdir, 'describe', '--always', '--tags', '--long', '--dirty') + prog = ('git', '-C', gitdir, 'describe', '--always', + '--tags', '--long', '--dirty') try: - process = subprocess.Popen(prog, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + process = subprocess.Popen(prog, stdout=subprocess.PIPE, + stderr=subprocess.PIPE) ver, err = process.communicate() retcode = process.wait() if retcode == 0: |