fix typo
This commit is contained in:
parent
39f7ad9a75
commit
a5fbc73c44
16 changed files with 32 additions and 32 deletions
|
@ -292,7 +292,7 @@ def git_pieces_from_vcs(tag_prefix, root, verbose, run_command=run_command):
|
||||||
# TAG-NUM-gHEX
|
# TAG-NUM-gHEX
|
||||||
mo = re.search(r"^(.+)-(\d+)-g([0-9a-f]+)$", git_describe)
|
mo = re.search(r"^(.+)-(\d+)-g([0-9a-f]+)$", git_describe)
|
||||||
if not mo:
|
if not mo:
|
||||||
# unparseable. Maybe git-describe is misbehaving?
|
# unparsable. Maybe git-describe is misbehaving?
|
||||||
pieces["error"] = "unable to parse git-describe output: '%s'" % describe_out
|
pieces["error"] = "unable to parse git-describe output: '%s'" % describe_out
|
||||||
return pieces
|
return pieces
|
||||||
|
|
||||||
|
|
|
@ -295,7 +295,7 @@ class Error(Module):
|
||||||
def full_text(self, widget):
|
def full_text(self, widget):
|
||||||
return "{}: {}".format(self.__module, self.__error)
|
return "{}: {}".format(self.__module, self.__error)
|
||||||
|
|
||||||
"""Overriden state, always returns critical (it *is* an error, after all"""
|
"""Overridden state, always returns critical (it *is* an error, after all"""
|
||||||
|
|
||||||
def state(self, widget):
|
def state(self, widget):
|
||||||
return ["critical"]
|
return ["critical"]
|
||||||
|
|
|
@ -68,7 +68,7 @@ class UPowerManager:
|
||||||
isPresent = battery_proxy_interface.Get(
|
isPresent = battery_proxy_interface.Get(
|
||||||
self.UPOWER_NAME + ".Device", "IsPresent"
|
self.UPOWER_NAME + ".Device", "IsPresent"
|
||||||
)
|
)
|
||||||
isRechargable = battery_proxy_interface.Get(
|
isRechargeable = battery_proxy_interface.Get(
|
||||||
self.UPOWER_NAME + ".Device", "IsRechargeable"
|
self.UPOWER_NAME + ".Device", "IsRechargeable"
|
||||||
)
|
)
|
||||||
online = battery_proxy_interface.Get(self.UPOWER_NAME + ".Device", "Online")
|
online = battery_proxy_interface.Get(self.UPOWER_NAME + ".Device", "Online")
|
||||||
|
@ -128,7 +128,7 @@ class UPowerManager:
|
||||||
"HasHistory": hasHistory,
|
"HasHistory": hasHistory,
|
||||||
"HasStatistics": hasStatistics,
|
"HasStatistics": hasStatistics,
|
||||||
"IsPresent": isPresent,
|
"IsPresent": isPresent,
|
||||||
"IsRechargeable": isRechargable,
|
"IsRechargeable": isRechargeable,
|
||||||
"Online": online,
|
"Online": online,
|
||||||
"PowerSupply": powersupply,
|
"PowerSupply": powersupply,
|
||||||
"Capacity": capacity,
|
"Capacity": capacity,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
"""Displays temperature of blugon and Controls it.
|
"""Displays temperature of blugon and Controls it.
|
||||||
|
|
||||||
Use wheel up and down to change temperature, middle click to toggle and right click to reset temprature.
|
Use wheel up and down to change temperature, middle click to toggle and right click to reset temperature.
|
||||||
|
|
||||||
Default Values:
|
Default Values:
|
||||||
* Minimum temperature: 1000 (red)
|
* Minimum temperature: 1000 (red)
|
||||||
|
|
|
@ -24,9 +24,9 @@ Parameters:
|
||||||
* cpu2.fanspeed
|
* cpu2.fanspeed
|
||||||
* cpu2.colored: 1 for colored per core load graph, 0 for mono (default)
|
* cpu2.colored: 1 for colored per core load graph, 0 for mono (default)
|
||||||
* cpu2.temp_pattern: pattern to look for in the output of 'sensors -u';
|
* cpu2.temp_pattern: pattern to look for in the output of 'sensors -u';
|
||||||
required if cpu2.temp widged is used
|
required if cpu2.temp widget is used
|
||||||
* cpu2.fan_pattern: pattern to look for in the output of 'sensors -u';
|
* cpu2.fan_pattern: pattern to look for in the output of 'sensors -u';
|
||||||
required if cpu2.fanspeed widged is used
|
required if cpu2.fanspeed widget is used
|
||||||
|
|
||||||
Note: if you are getting 'n/a' for CPU temperature / fan speed, then you're
|
Note: if you are getting 'n/a' for CPU temperature / fan speed, then you're
|
||||||
lacking the aforementioned pattern settings or they have wrong values.
|
lacking the aforementioned pattern settings or they have wrong values.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"""
|
"""
|
||||||
Displays the message that's received via unix socket.
|
Displays the message that's received via unix socket.
|
||||||
|
|
||||||
Parameteres:
|
Parameters:
|
||||||
* messagereceiver : Unix socket address (e.g: /tmp/bumblebee_messagereceiver.sock)
|
* messagereceiver : Unix socket address (e.g: /tmp/bumblebee_messagereceiver.sock)
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"""Displays update information per repository for pacman.
|
"""Displays update information per repository for pacman.
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
* pacman.sum: If you prefere displaying updates with a single digit (defaults to 'False')
|
* pacman.sum: If you prefer displaying updates with a single digit (defaults to 'False')
|
||||||
|
|
||||||
Requires the following executables:
|
Requires the following executables:
|
||||||
* fakeroot
|
* fakeroot
|
||||||
|
|
|
@ -13,7 +13,7 @@ Parameters:
|
||||||
Example: 'notify-send 'Time up!''. If you want to chain multiple commands,
|
Example: 'notify-send 'Time up!''. If you want to chain multiple commands,
|
||||||
please use an external wrapper script and invoke that. The module itself does
|
please use an external wrapper script and invoke that. The module itself does
|
||||||
not support command chaining (see https://github.com/tobi-wan-kenobi/bumblebee-status/issues/532
|
not support command chaining (see https://github.com/tobi-wan-kenobi/bumblebee-status/issues/532
|
||||||
for a detailled explanation)
|
for a detailed explanation)
|
||||||
|
|
||||||
contributed by `martindoublem <https://github.com/martindoublem>`_, inspired by `karthink <https://github.com/karthink>`_ - many thanks!
|
contributed by `martindoublem <https://github.com/martindoublem>`_, inspired by `karthink <https://github.com/karthink>`_ - many thanks!
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -56,7 +56,7 @@ class Module(core.module.Module):
|
||||||
return self.parameter("placeholder", "n/a")
|
return self.parameter("placeholder", "n/a")
|
||||||
|
|
||||||
def update_progress_info(self, widget):
|
def update_progress_info(self, widget):
|
||||||
"""Update widget's informations about the copy"""
|
"""Update widget's information about the copy"""
|
||||||
if not self.__active:
|
if not self.__active:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
@ -64,8 +64,8 @@ class Module(core.module.Module):
|
||||||
# 1. pid
|
# 1. pid
|
||||||
# 2. command
|
# 2. command
|
||||||
# 3. arguments
|
# 3. arguments
|
||||||
# 4. progress (xx.x formated)
|
# 4. progress (xx.x formatted)
|
||||||
# 5. quantity (.. unit / .. unit formated)
|
# 5. quantity (.. unit / .. unit formatted)
|
||||||
# 6. speed
|
# 6. speed
|
||||||
# 7. time remaining
|
# 7. time remaining
|
||||||
extract_nospeed = re.compile(
|
extract_nospeed = re.compile(
|
||||||
|
@ -80,7 +80,7 @@ class Module(core.module.Module):
|
||||||
result = extract_wtspeed.match(raw)
|
result = extract_wtspeed.match(raw)
|
||||||
|
|
||||||
if not result:
|
if not result:
|
||||||
# Abord speed measures
|
# Abort speed measures
|
||||||
raw = util.cli.execute("progress -q")
|
raw = util.cli.execute("progress -q")
|
||||||
result = extract_nospeed.match(raw)
|
result = extract_nospeed.match(raw)
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ Requires the following executables:
|
||||||
* smartctl
|
* smartctl
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
* smartstatus.display: how to display (defaults to 'combined', other choices: 'combined_singles', 'seperate' or 'singles')
|
* smartstatus.display: how to display (defaults to 'combined', other choices: 'combined_singles', 'separate' or 'singles')
|
||||||
* smartstatus.drives: in the case of singles which drives to display, separated comma list value, multiple accepted (defaults to 'sda', example:'sda,sdc')
|
* smartstatus.drives: in the case of singles which drives to display, separated comma list value, multiple accepted (defaults to 'sda', example:'sda,sdc')
|
||||||
* smartstatus.show_names: boolean in the form of "True" or "False" to show the name of the drives in the form of sda, sbd, combined or none at all.
|
* smartstatus.show_names: boolean in the form of "True" or "False" to show the name of the drives in the form of sda, sbd, combined or none at all.
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -16,7 +16,7 @@ Parameters:
|
||||||
|
|
||||||
Format Strings:
|
Format Strings:
|
||||||
* Format strings are indicated by double %%
|
* Format strings are indicated by double %%
|
||||||
* They represent a leaf in the JSON tree, layers seperated by '.'
|
* They represent a leaf in the JSON tree, layers separated by '.'
|
||||||
* Boolean values can be overwritten by appending '%true%false'
|
* Boolean values can be overwritten by appending '%true%false'
|
||||||
in the format string
|
in the format string
|
||||||
* Example: to reference 'open' in '{'state':{'open': true}}'
|
* Example: to reference 'open' in '{'state':{'open': true}}'
|
||||||
|
|
|
@ -8,7 +8,7 @@ Parameters:
|
||||||
* traffic.showname: If set to False, hide network interface name (defaults to True)
|
* traffic.showname: If set to False, hide network interface name (defaults to True)
|
||||||
* traffic.format: Format string for download/upload speeds.
|
* traffic.format: Format string for download/upload speeds.
|
||||||
Defaults to '{:.2f}'
|
Defaults to '{:.2f}'
|
||||||
* traffic.graphlen: Graph lenth in seconds. Positive even integer. Each
|
* traffic.graphlen: Graph length in seconds. Positive even integer. Each
|
||||||
char shows 2 seconds. If set, enables up/down traffic
|
char shows 2 seconds. If set, enables up/down traffic
|
||||||
graphs
|
graphs
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
* disk.warning: Warning threshold in % of disk space (defaults to 80%)
|
* disk.warning: Warning threshold in % of disk space (defaults to 80%)
|
||||||
* disk.critical: Critical threshold in % of disk space (defaults ot 90%)
|
* disk.critical: Critical threshold in % of disk space (defaults to 90%)
|
||||||
* disk.path: Path to calculate disk usage from (defaults to /)
|
* disk.path: Path to calculate disk usage from (defaults to /)
|
||||||
* disk.open: Which application / file manager to launch (default xdg-open)
|
* disk.open: Which application / file manager to launch (default xdg-open)
|
||||||
* disk.format: Format string, tags {path}, {used}, {left}, {size} and {percent} (defaults to '{path} {used}/{size} ({percent:05.02f}%)')
|
* disk.format: Format string, tags {path}, {used}, {left}, {size} and {percent} (defaults to '{path} {used}/{size} ({percent:05.02f}%)')
|
||||||
|
|
|
@ -11,7 +11,7 @@ Parameters:
|
||||||
* sensors2.showother: Enable or display 'other' sensor readings (default: false)
|
* sensors2.showother: Enable or display 'other' sensor readings (default: false)
|
||||||
* sensors2.showname: Enable or disable show of sensor name (default: false)
|
* sensors2.showname: Enable or disable show of sensor name (default: false)
|
||||||
* sensors2.chip_include: Comma-separated list of chip to include (defaults to '' will include all by default, example: 'coretemp,bat')
|
* sensors2.chip_include: Comma-separated list of chip to include (defaults to '' will include all by default, example: 'coretemp,bat')
|
||||||
* sensors2.chip_exclude:Comma separated list of chip to exclude (defaults to '' will exlude none by default)
|
* sensors2.chip_exclude:Comma separated list of chip to exclude (defaults to '' will exclude none by default)
|
||||||
* sensors2.field_include: Comma separated list of chip to include (defaults to '' will include all by default, example: 'temp,fan')
|
* sensors2.field_include: Comma separated list of chip to include (defaults to '' will include all by default, example: 'temp,fan')
|
||||||
* sensors2.field_exclude: Comma separated list of chip to exclude (defaults to '' will exclude none by default)
|
* sensors2.field_exclude: Comma separated list of chip to exclude (defaults to '' will exclude none by default)
|
||||||
* sensors2.chip_field_exclude: Comma separated list of chip field to exclude (defaults to '' will exclude none by default, example: 'coretemp-isa-0000.temp1,coretemp-isa-0000.fan1')
|
* sensors2.chip_field_exclude: Comma separated list of chip field to exclude (defaults to '' will exclude none by default, example: 'coretemp-isa-0000.temp1,coretemp-isa-0000.fan1')
|
||||||
|
|
|
@ -60,7 +60,7 @@ Shows free diskspace, total diskspace and the percentage of free disk space.
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
* disk.warning: Warning threshold in % of disk space (defaults to 80%)
|
* disk.warning: Warning threshold in % of disk space (defaults to 80%)
|
||||||
* disk.critical: Critical threshold in % of disk space (defaults ot 90%)
|
* disk.critical: Critical threshold in % of disk space (defaults to 90%)
|
||||||
* disk.path: Path to calculate disk usage from (defaults to /)
|
* disk.path: Path to calculate disk usage from (defaults to /)
|
||||||
* disk.open: Which application / file manager to launch (default xdg-open)
|
* disk.open: Which application / file manager to launch (default xdg-open)
|
||||||
* disk.format: Format string, tags {path}, {used}, {left}, {size} and {percent} (defaults to '{path} {used}/{size} ({percent:05.02f}%)')
|
* disk.format: Format string, tags {path}, {used}, {left}, {size} and {percent} (defaults to '{path} {used}/{size} ({percent:05.02f}%)')
|
||||||
|
@ -246,7 +246,7 @@ Parameters:
|
||||||
* sensors2.showother: Enable or display 'other' sensor readings (default: false)
|
* sensors2.showother: Enable or display 'other' sensor readings (default: false)
|
||||||
* sensors2.showname: Enable or disable show of sensor name (default: false)
|
* sensors2.showname: Enable or disable show of sensor name (default: false)
|
||||||
* sensors2.chip_include: Comma-separated list of chip to include (defaults to '' will include all by default, example: 'coretemp,bat')
|
* sensors2.chip_include: Comma-separated list of chip to include (defaults to '' will include all by default, example: 'coretemp,bat')
|
||||||
* sensors2.chip_exclude:Comma separated list of chip to exclude (defaults to '' will exlude none by default)
|
* sensors2.chip_exclude:Comma separated list of chip to exclude (defaults to '' will exclude none by default)
|
||||||
* sensors2.field_include: Comma separated list of chip to include (defaults to '' will include all by default, example: 'temp,fan')
|
* sensors2.field_include: Comma separated list of chip to include (defaults to '' will include all by default, example: 'temp,fan')
|
||||||
* sensors2.field_exclude: Comma separated list of chip to exclude (defaults to '' will exclude none by default)
|
* sensors2.field_exclude: Comma separated list of chip to exclude (defaults to '' will exclude none by default)
|
||||||
* sensors2.chip_field_exclude: Comma separated list of chip field to exclude (defaults to '' will exclude none by default, example: 'coretemp-isa-0000.temp1,coretemp-isa-0000.fan1')
|
* sensors2.chip_field_exclude: Comma separated list of chip field to exclude (defaults to '' will exclude none by default, example: 'coretemp-isa-0000.temp1,coretemp-isa-0000.fan1')
|
||||||
|
@ -574,9 +574,9 @@ Parameters:
|
||||||
* cpu2.fanspeed
|
* cpu2.fanspeed
|
||||||
* cpu2.colored: 1 for colored per core load graph, 0 for mono (default)
|
* cpu2.colored: 1 for colored per core load graph, 0 for mono (default)
|
||||||
* cpu2.temp_pattern: pattern to look for in the output of 'sensors -u';
|
* cpu2.temp_pattern: pattern to look for in the output of 'sensors -u';
|
||||||
required if cpu2.temp widged is used
|
required if cpu2.temp widget is used
|
||||||
* cpu2.fan_pattern: pattern to look for in the output of 'sensors -u';
|
* cpu2.fan_pattern: pattern to look for in the output of 'sensors -u';
|
||||||
required if cpu2.fanspeed widged is used
|
required if cpu2.fanspeed widget is used
|
||||||
|
|
||||||
Note: if you are getting 'n/a' for CPU temperature / fan speed, then you're
|
Note: if you are getting 'n/a' for CPU temperature / fan speed, then you're
|
||||||
lacking the aforementioned pattern settings or they have wrong values.
|
lacking the aforementioned pattern settings or they have wrong values.
|
||||||
|
@ -907,7 +907,7 @@ messagereceiver
|
||||||
|
|
||||||
Displays the message that's received via unix socket.
|
Displays the message that's received via unix socket.
|
||||||
|
|
||||||
Parameteres:
|
Parameters:
|
||||||
* messagereceiver : Unix socket address (e.g: /tmp/bumblebee_messagereceiver.sock)
|
* messagereceiver : Unix socket address (e.g: /tmp/bumblebee_messagereceiver.sock)
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
@ -1059,7 +1059,7 @@ pacman
|
||||||
Displays update information per repository for pacman.
|
Displays update information per repository for pacman.
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
* pacman.sum: If you prefere displaying updates with a single digit (defaults to 'False')
|
* pacman.sum: If you prefer displaying updates with a single digit (defaults to 'False')
|
||||||
|
|
||||||
Requires the following executables:
|
Requires the following executables:
|
||||||
* fakeroot
|
* fakeroot
|
||||||
|
@ -1119,7 +1119,7 @@ Parameters:
|
||||||
Example: 'notify-send 'Time up!''. If you want to chain multiple commands,
|
Example: 'notify-send 'Time up!''. If you want to chain multiple commands,
|
||||||
please use an external wrapper script and invoke that. The module itself does
|
please use an external wrapper script and invoke that. The module itself does
|
||||||
not support command chaining (see https://github.com/tobi-wan-kenobi/bumblebee-status/issues/532
|
not support command chaining (see https://github.com/tobi-wan-kenobi/bumblebee-status/issues/532
|
||||||
for a detailled explanation)
|
for a detailed explanation)
|
||||||
|
|
||||||
contributed by `martindoublem <https://github.com/martindoublem>`_, inspired by `karthink <https://github.com/karthink>`_ - many thanks!
|
contributed by `martindoublem <https://github.com/martindoublem>`_, inspired by `karthink <https://github.com/karthink>`_ - many thanks!
|
||||||
|
|
||||||
|
@ -1303,7 +1303,7 @@ Requires the following executables:
|
||||||
* smartctl
|
* smartctl
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
* smartstatus.display: how to display (defaults to 'combined', other choices: 'combined_singles', 'seperate' or 'singles')
|
* smartstatus.display: how to display (defaults to 'combined', other choices: 'combined_singles', 'separate' or 'singles')
|
||||||
* smartstatus.drives: in the case of singles which drives to display, separated comma list value, multiple accepted (defaults to 'sda', example:'sda,sdc')
|
* smartstatus.drives: in the case of singles which drives to display, separated comma list value, multiple accepted (defaults to 'sda', example:'sda,sdc')
|
||||||
* smartstatus.show_names: boolean in the form of "True" or "False" to show the name of the drives in the form of sda, sbd, combined or none at all.
|
* smartstatus.show_names: boolean in the form of "True" or "False" to show the name of the drives in the form of sda, sbd, combined or none at all.
|
||||||
|
|
||||||
|
@ -1323,7 +1323,7 @@ Parameters:
|
||||||
|
|
||||||
Format Strings:
|
Format Strings:
|
||||||
* Format strings are indicated by double %%
|
* Format strings are indicated by double %%
|
||||||
* They represent a leaf in the JSON tree, layers seperated by '.'
|
* They represent a leaf in the JSON tree, layers separated by '.'
|
||||||
* Boolean values can be overwritten by appending '%true%false'
|
* Boolean values can be overwritten by appending '%true%false'
|
||||||
in the format string
|
in the format string
|
||||||
* Example: to reference 'open' in '{'state':{'open': true}}'
|
* Example: to reference 'open' in '{'state':{'open': true}}'
|
||||||
|
@ -1514,7 +1514,7 @@ Parameters:
|
||||||
* traffic.showname: If set to False, hide network interface name (defaults to True)
|
* traffic.showname: If set to False, hide network interface name (defaults to True)
|
||||||
* traffic.format: Format string for download/upload speeds.
|
* traffic.format: Format string for download/upload speeds.
|
||||||
Defaults to '{:.2f}'
|
Defaults to '{:.2f}'
|
||||||
* traffic.graphlen: Graph lenth in seconds. Positive even integer. Each
|
* traffic.graphlen: Graph length in seconds. Positive even integer. Each
|
||||||
char shows 2 seconds. If set, enables up/down traffic
|
char shows 2 seconds. If set, enables up/down traffic
|
||||||
graphs
|
graphs
|
||||||
|
|
||||||
|
|
|
@ -179,7 +179,7 @@ two common reasons why `setup.py` might not be in the root:
|
||||||
`setup.cfg`, and `tox.ini`. Projects like these produce multiple PyPI
|
`setup.cfg`, and `tox.ini`. Projects like these produce multiple PyPI
|
||||||
distributions (and upload multiple independently-installable tarballs).
|
distributions (and upload multiple independently-installable tarballs).
|
||||||
* Source trees whose main purpose is to contain a C library, but which also
|
* Source trees whose main purpose is to contain a C library, but which also
|
||||||
provide bindings to Python (and perhaps other langauges) in subdirectories.
|
provide bindings to Python (and perhaps other languages) in subdirectories.
|
||||||
|
|
||||||
Versioneer will look for `.git` in parent directories, and most operations
|
Versioneer will look for `.git` in parent directories, and most operations
|
||||||
should get the right version string. However `pip` and `setuptools` have bugs
|
should get the right version string. However `pip` and `setuptools` have bugs
|
||||||
|
@ -699,7 +699,7 @@ def git_pieces_from_vcs(tag_prefix, root, verbose, run_command=run_command):
|
||||||
# TAG-NUM-gHEX
|
# TAG-NUM-gHEX
|
||||||
mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe)
|
mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe)
|
||||||
if not mo:
|
if not mo:
|
||||||
# unparseable. Maybe git-describe is misbehaving?
|
# unparsable. Maybe git-describe is misbehaving?
|
||||||
pieces["error"] = ("unable to parse git-describe output: '%%s'"
|
pieces["error"] = ("unable to parse git-describe output: '%%s'"
|
||||||
%% describe_out)
|
%% describe_out)
|
||||||
return pieces
|
return pieces
|
||||||
|
@ -1106,7 +1106,7 @@ def git_pieces_from_vcs(tag_prefix, root, verbose, run_command=run_command):
|
||||||
# TAG-NUM-gHEX
|
# TAG-NUM-gHEX
|
||||||
mo = re.search(r"^(.+)-(\d+)-g([0-9a-f]+)$", git_describe)
|
mo = re.search(r"^(.+)-(\d+)-g([0-9a-f]+)$", git_describe)
|
||||||
if not mo:
|
if not mo:
|
||||||
# unparseable. Maybe git-describe is misbehaving?
|
# unparsable. Maybe git-describe is misbehaving?
|
||||||
pieces["error"] = "unable to parse git-describe output: '%s'" % describe_out
|
pieces["error"] = "unable to parse git-describe output: '%s'" % describe_out
|
||||||
return pieces
|
return pieces
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue