Skip to content

Commit

Permalink
sync: fix AttributeError
Browse files Browse the repository at this point in the history
  • Loading branch information
rgonzalezfluendo committed Nov 13, 2024
1 parent 9c8f273 commit b7ce144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guw/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def _sync_at(self, tmpdir, backup, local, features, prev_feature):
self._push(repo, local)

def _sync(self, backup, keep, local, folder, features=None, prev_feature=None):
features = features if features else self.config.features
features = features if features else self.config["features"]
prev_feature = prev_feature if prev_feature else self._get_upstream_feature()
tmpdir = folder if folder else tempfile.mkdtemp()
exception = None
Expand Down

0 comments on commit b7ce144

Please sign in to comment.