File: utils.py

package info (click to toggle)
python-screed 1.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 820 kB
  • sloc: python: 3,356; makefile: 169; sh: 32; javascript: 16
file content (10 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
# Copyright (c) 2016, The Regents of the University of California.


def to_str(line):
    try:
        line = line.decode('utf-8')
    except AttributeError:
        pass

    return line